Add missing notify all

This commit is contained in:
angie 2024-05-28 17:52:15 -04:00 committed by Angie
parent d1c40a4435
commit baec74c6f1

View file

@ -378,6 +378,7 @@ void recomp::start_game(const std::u8string& game_id) {
std::lock_guard<std::mutex> lock(current_game_mutex); std::lock_guard<std::mutex> lock(current_game_mutex);
current_game = game_id; current_game = game_id;
game_status.store(GameStatus::Running); game_status.store(GameStatus::Running);
game_status.notify_all();
} }
bool ultramodern::is_game_started() { bool ultramodern::is_game_started() {