Merge pull request #285 from abcdjdj/limit_fps

Add option to limit framerate from UI
This commit is contained in:
StapleButter
2018-12-15 00:38:35 +01:00
committed by GitHub
3 changed files with 17 additions and 2 deletions

View File

@ -46,6 +46,8 @@ int ScreenLayout;
int ScreenSizing;
int ScreenFilter;
int LimitFPS;
int DirectBoot;
int Threaded3D;
@ -114,6 +116,8 @@ ConfigEntry ConfigFile[] =
{"ScreenSizing", 0, &ScreenSizing, 0, NULL, 0},
{"ScreenFilter", 0, &ScreenFilter, 1, NULL, 0},
{"LimitFPS", 0, &LimitFPS, 1, NULL, 0},
{"DirectBoot", 0, &DirectBoot, 1, NULL, 0},
{"Threaded3D", 0, &Threaded3D, 1, NULL, 0},