From baec74c6f107f2ecd344d1cfe3689e60cac78b5e Mon Sep 17 00:00:00 2001 From: angie Date: Tue, 28 May 2024 17:52:15 -0400 Subject: [PATCH] Add missing notify all --- librecomp/src/recomp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/librecomp/src/recomp.cpp b/librecomp/src/recomp.cpp index 2f77f7c..17e6303 100644 --- a/librecomp/src/recomp.cpp +++ b/librecomp/src/recomp.cpp @@ -378,6 +378,7 @@ void recomp::start_game(const std::u8string& game_id) { std::lock_guard lock(current_game_mutex); current_game = game_id; game_status.store(GameStatus::Running); + game_status.notify_all(); } bool ultramodern::is_game_started() {