From 9764c9de0b04564ba0cca816a2366fd130ef4ca6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 27 Sep 2020 12:27:49 +0200 Subject: [PATCH] - use the proper variable for timer frequency only. MinFPSRate was an obsolete leftover. --- source/core/gamecontrol.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index fb916a324..a1be11379 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -456,8 +456,6 @@ namespace Powerslave ::GameInterface* CreateInterface(); } -extern int MinFPSRate; // this is a bit messy. - void CheckFrontend(int flags) { if (flags & GAMEFLAG_BLOOD) @@ -466,7 +464,6 @@ void CheckFrontend(int flags) } else if (flags & GAMEFLAG_SW) { - MinFPSRate = 40; gi = ShadowWarrior::CreateInterface(); } else if (flags & GAMEFLAG_PSEXHUMED)