Match DamageScrnGoHead (#541)

This commit is contained in:
MS 2026-01-01 14:01:12 -05:00 committed by GitHub
parent 78d61ea0ac
commit 876e49bb94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -1175,11 +1175,13 @@ int DamageScrnGoHead(int* pCurrent_choice, int* pCurrent_mode) {
} else if (gWreck_zoomed_in >= 0) {
if (*pCurrent_choice == 1) {
ZoomInTo(gWreck_selected, pCurrent_choice, pCurrent_mode);
return 0;
}
} else if (*pCurrent_choice == 1) {
} else {
if (*pCurrent_choice == 0 && gWreck_selected >= 0) {
ZoomOutTo(gWreck_selected, pCurrent_choice, pCurrent_mode);
gUser_interacted = 1;
return 0;
}
}
return 0;