Make it actually build

Oops, extra "." in version check and used comparison instead of "="
This commit is contained in:
VelocitOni 2024-05-03 20:43:24 -04:00
parent 020cb6c60b
commit 544125bb99

View file

@ -518,11 +518,11 @@ void PR_LoadProfiles(void)
converted = true;
}
if (js.prof.version == 2)
if (jsprof.version == 2)
{
// Version 2 -> 3:
// - Auto Roulette is turned off again so people have to see the warning message
newprof->autoroulette == false;
newprof->autoroulette = false;
converted = true;
}