mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- removed config updates for pre-GZDoom versions of ZDoom.
GZDoom 0.9 had config version 205, so the adapters for 202-204 are not needed.
This commit is contained in:
parent
a80775a1e8
commit
798604e6de
1 changed files with 0 additions and 24 deletions
|
@ -303,30 +303,6 @@ void FGameConfigFile::DoGlobalSetup ()
|
|||
if (lastver != NULL)
|
||||
{
|
||||
double last = atof (lastver);
|
||||
if (last < 202)
|
||||
{
|
||||
// Make sure the Hexen hotkeys are accessible by default.
|
||||
if (SetSection ("Hexen.Bindings"))
|
||||
{
|
||||
SetValueForKey ("\\", "use ArtiHealth");
|
||||
SetValueForKey ("scroll", "+showscores");
|
||||
SetValueForKey ("0", "useflechette");
|
||||
SetValueForKey ("9", "use ArtiBlastRadius");
|
||||
SetValueForKey ("8", "use ArtiTeleport");
|
||||
SetValueForKey ("7", "use ArtiTeleportOther");
|
||||
SetValueForKey ("6", "use ArtiPork");
|
||||
SetValueForKey ("5", "use ArtiInvulnerability2");
|
||||
}
|
||||
}
|
||||
if (last < 204)
|
||||
{ // The old default for vsync was true, but with an unlimited framerate
|
||||
// now, false is a better default.
|
||||
FBaseCVar *vsync = FindCVar ("vid_vsync", NULL);
|
||||
if (vsync != NULL)
|
||||
{
|
||||
vsync->ResetToDefault ();
|
||||
}
|
||||
}
|
||||
if (last < 207)
|
||||
{ // Now that snd_midiprecache works again, you probably don't want it on.
|
||||
FBaseCVar *precache = FindCVar ("snd_midiprecache", NULL);
|
||||
|
|
Loading…
Reference in a new issue