remove old 125 fps workaround since it isn't needed anymore

This commit is contained in:
FunkyFr3sh 2018-10-25 04:18:37 +02:00
parent 67f7f2bfe6
commit 5f1fab04d9
2 changed files with 0 additions and 6 deletions

View file

@ -149,9 +149,6 @@ static void SetMaxFPS(int baseMaxFPS)
if (MaxFPS < 0)
MaxFPS = ddraw->mode.dmDisplayFrequency;
if (MaxFPS == 0)
MaxFPS = 125;
if (MaxFPS >= 1000)
MaxFPS = 0;

View file

@ -244,9 +244,6 @@ static void SetMaxFPS()
if (MaxFPS < 0)
MaxFPS = ddraw->mode.dmDisplayFrequency;
if (MaxFPS == 0)
MaxFPS = 125;
if (MaxFPS >= 1000 || ddraw->vsync)
MaxFPS = 0;