mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
Merge branch 'fix-negative-lives-crash' into 'next'
Fix a crash when scrolling away from a save file with a negative lives count. See merge request STJr/SRB2!1822
This commit is contained in:
commit
24ab858684
1 changed files with 1 additions and 1 deletions
|
@ -8418,7 +8418,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