mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
Fix default difficulty override
This commit is contained in:
parent
f1158918cf
commit
90926cfdfd
1 changed files with 11 additions and 8 deletions
|
|
@ -129,7 +129,9 @@ void M_SetupDifficultyOptions(INT32 choice)
|
||||||
PLAY_RaceDifficulty[drace_cupselect].status = IT_DISABLED;
|
PLAY_RaceDifficulty[drace_cupselect].status = IT_DISABLED;
|
||||||
PLAY_RaceDifficulty[drace_mapselect].status = IT_DISABLED;
|
PLAY_RaceDifficulty[drace_mapselect].status = IT_DISABLED;
|
||||||
|
|
||||||
if (M_SecretUnlocked(SECRET_HARDSPEED, true) && !interceptedDefaultDifficulty)
|
if (!interceptedDefaultDifficulty)
|
||||||
|
{
|
||||||
|
if (M_SecretUnlocked(SECRET_HARDSPEED, true))
|
||||||
{
|
{
|
||||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_NORMAL);
|
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_NORMAL);
|
||||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_NORMAL);
|
CV_SetValue(&cv_dummykartspeed, KARTSPEED_NORMAL);
|
||||||
|
|
@ -139,6 +141,7 @@ void M_SetupDifficultyOptions(INT32 choice)
|
||||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_EASY);
|
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_EASY);
|
||||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_EASY);
|
CV_SetValue(&cv_dummykartspeed, KARTSPEED_EASY);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
interceptedDefaultDifficulty = true;
|
interceptedDefaultDifficulty = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue