Update LASTRUNVERSION to handle the snd_hrtf change

Also snd_hrtf now uses -1 for "auto" and 0 for "off", which makes more sense.
This commit is contained in:
Chris Robinson 2017-04-30 12:01:38 -07:00 committed by Christoph Oelckers
commit 6044c876ab
5 changed files with 13 additions and 9 deletions

View file

@ -378,9 +378,13 @@ void FGameConfigFile::DoGlobalSetup ()
if (var != NULL) var->ResetToDefault();
var = FindCVar("uiscale", NULL);
if (var != NULL) var->ResetToDefault();
}
if (last < 215)
{
// Previously a true/false boolean. Now an on/off/auto tri-state with auto as the default.
FBaseCVar *var = FindCVar("snd_hrtf", NULL);
if (var != NULL) var->ResetToDefault();
}
}
}
}