mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-10 08:44:25 +00:00
Fix valid followerskin range on GP Backup load
This commit is contained in:
parent
e9f9cfd051
commit
2eef39e079
1 changed files with 1 additions and 1 deletions
|
|
@ -502,7 +502,7 @@ static void M_GPBackup(INT32 choice)
|
|||
CV_StealthSetValue(&cv_playercolor[0], savedata.skincolor);
|
||||
|
||||
// follower
|
||||
if (savedata.followerskin < 0 || savedata.followerskin > numfollowers)
|
||||
if (savedata.followerskin < 0 || savedata.followerskin >= numfollowers)
|
||||
CV_StealthSet(&cv_follower[0], "None");
|
||||
else
|
||||
CV_StealthSet(&cv_follower[0], followers[savedata.followerskin].name);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue