1
0
Fork 0

Fix: Crash when exiting game with end game window open.

Caused by the end game window opening the highscore window on close, which `UnInitWindowSystem()` does not expect.
pull/12962/head
Peter Nelson 2024-09-22 23:03:32 +01:00
parent c1db57840e
commit 202cfd4e3e
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ struct EndGameWindow : EndGameHighScoreBaseWindow {
void Close([[maybe_unused]] int data = 0) override
{
if (!_networking) Command<CMD_PAUSE>::Post(PM_PAUSED_NORMAL, false); // unpause
if (_game_mode != GM_MENU) ShowHighscoreTable(this->window_number, this->rank);
if (_game_mode != GM_MENU && !_exit_game) ShowHighscoreTable(this->window_number, this->rank);
this->EndGameHighScoreBaseWindow::Close();
}