diff options
author | gregorycu <gregory.currie@gmail.com> | 2016-04-24 14:56:56 +1000 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2016-04-24 17:40:16 +1000 |
commit | 46da0e8b3b7ac9f833b660afd34b24095531bcb0 (patch) | |
tree | 683f712ced9f2865c5eacb6ace83b009c987977b /src | |
parent | 48939df9a5ef1ff20f4f9717d1341b51a50dff14 (diff) | |
download | minetest-46da0e8b3b7ac9f833b660afd34b24095531bcb0.tar.gz minetest-46da0e8b3b7ac9f833b660afd34b24095531bcb0.tar.bz2 minetest-46da0e8b3b7ac9f833b660afd34b24095531bcb0.zip |
Make GUIEngine use pause_fps_max not fps_max
Diffstat (limited to 'src')
-rw-r--r-- | src/guiEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guiEngine.cpp b/src/guiEngine.cpp index 84bc8488e..ba286a91c 100644 --- a/src/guiEngine.cpp +++ b/src/guiEngine.cpp @@ -361,7 +361,7 @@ void GUIEngine::cloudPreProcess() /******************************************************************************/ void GUIEngine::cloudPostProcess() { - float fps_max = g_settings->getFloat("fps_max"); + float fps_max = g_settings->getFloat("pause_fps_max"); // Time of frame without fps limit u32 busytime_u32; |