From 798604e6de332d0715bc8c63a0ce6e0e1be453e1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 14 Mar 2021 08:44:30 +0100 Subject: [PATCH] - 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. --- src/gameconfigfile.cpp | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/gameconfigfile.cpp b/src/gameconfigfile.cpp index 856d29f21..bdf26e354 100644 --- a/src/gameconfigfile.cpp +++ b/src/gameconfigfile.cpp @@ -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);