From 59b69aba62441af6ca4513b02dfb8108b7fb315f Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sun, 21 Jan 2024 02:19:33 +0000 Subject: [PATCH] Fix VideoDriver_Dedicated not marking the main thread as the game thread --- src/video/dedicated_v.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp index 82ef179a29..722b917550 100644 --- a/src/video/dedicated_v.cpp +++ b/src/video/dedicated_v.cpp @@ -199,6 +199,8 @@ void VideoDriver_Dedicated::MainLoop() signal(SIGQUIT, DedicatedSignalHandler); #endif + SetSelfAsGameThread(); + /* Load the dedicated server stuff */ _is_network_server = true; _network_dedicated = true;