1
0
Fork 0

Fix: Highscore/Endgame window can disappear offscreen if game window is resized. (#12951)

pull/12953/head
Peter Nelson 2024-09-19 09:18:25 +01:00 committed by GitHub
parent df0233f4c2
commit 3bfd9de68d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -3462,6 +3462,8 @@ void RelocateAllWindows(int neww, int newh)
switch (w->window_class) { switch (w->window_class) {
case WC_MAIN_WINDOW: case WC_MAIN_WINDOW:
case WC_BOOTSTRAP: case WC_BOOTSTRAP:
case WC_HIGHSCORE:
case WC_ENDSCREEN:
ResizeWindow(w, neww, newh); ResizeWindow(w, neww, newh);
continue; continue;