diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ad60bbaf..79e2a767 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -290,7 +290,7 @@ void init_engine() int fpsLimit = (int)config.getValue("fpslimit", 0); if (fpsLimit) { - if (fpsLimit < 20) fpsLimit = 20; + if (fpsLimit < 10) fpsLimit = 10; if (fpsLimit > 200) fpsLimit = 200; SDL_AddTimer(1000 / fpsLimit, nextFrame, NULL); } |