diff --git a/src/app/main.cpp b/src/app/main.cpp index e9168c3..337a1ca 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -28,6 +28,7 @@ overlay_params params {}; static ImVec2 window_size; static uint32_t vendorID; static std::string deviceName; +static notify_thread notifier; struct mangoapp_msg_header { long msg_type; // Message queue ID, never change @@ -121,6 +122,8 @@ int main(int, char**) create_fonts(params, sw_stats.font1, sw_stats.font_text); HUDElements.convert_colors(params); init_cpu_stats(params); + notifier.params = ¶ms; + start_notifier(notifier); deviceName = (char*)glGetString(GL_RENDERER); sw_stats.deviceName = deviceName; if (deviceName.find("Radeon") != std::string::npos