mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Fix a crash when scrolling away from a save file with a negative lives count.
This commit is contained in:
parent
e08ebac5c8
commit
3244d6586d
1 changed files with 1 additions and 1 deletions
|
@ -8393,7 +8393,7 @@ static void M_DrawLoadGameData(void)
|
|||
|
||||
savetodraw--;
|
||||
|
||||
if (savegameinfo[savetodraw].lives > 0)
|
||||
if (savegameinfo[savetodraw].lives != 0)
|
||||
charskin = &skins[savegameinfo[savetodraw].skinnum];
|
||||
|
||||
// signpost background
|
||||
|
|
Loading…
Reference in a new issue