From ddc6675dc8bfd63a00e899c4e4bf6729acd868c1 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 6 Feb 2026 22:27:57 -0600 Subject: [PATCH] Fix macOS and Steam Link build --- app/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.cpp b/app/main.cpp index 5816f6f9..dea6cd7d 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -359,7 +359,7 @@ int SDLCALL signalHandlerThread(void* data) // Exit immediately if we haven't changed state since last attempt if (session == lastSession || requestedQuit) { SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "Exiting immediately on second signal"); - _exit(1); + _Exit(1); } if (sig == SIGTERM) { @@ -376,7 +376,7 @@ int SDLCALL signalHandlerThread(void* data) // Exit immediately if we haven't changed state since last attempt if (requestedQuit) { SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "Exiting immediately on second signal"); - _exit(1); + _Exit(1); } // If we're not streaming, we'll close the whole app