1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

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;