From b1ae5b87c71d0f82aaf70bd0d16091c630f75b8a Mon Sep 17 00:00:00 2001 From: flightlessmango Date: Tue, 14 Nov 2023 10:10:26 +0100 Subject: [PATCH] mangoapp: init spdlog --- src/app/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/main.cpp b/src/app/main.cpp index 258af694..8897fd18 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -210,6 +210,7 @@ static void msg_read_thread(){ static const char *GamescopeOverlayProperty = "GAMESCOPE_EXTERNAL_OVERLAY"; static GLFWwindow* init(const char* glsl_version){ + init_spdlog(); GLFWwindow *window = glfwCreateWindow(1280, 800, "mangoapp overlay window", NULL, NULL); Display *x11_display = glfwGetX11Display(); Window x11_window = glfwGetX11Window(window);