summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-04-09 12:58:17 +0200
committerMel <einebeere@gmail.com>2024-04-09 12:58:17 +0200
commit1aed0a492d8bc0b70f3c63143d1ca19bf873ccb0 (patch)
tree062a205ffefe9e808d313e7ef829be18df61f3ce /src
parentf814ff317f56a95d2449c939b23c577a0fcbeb4e (diff)
downloadmeowcraft-1aed0a492d8bc0b70f3c63143d1ca19bf873ccb0.tar.zst
meowcraft-1aed0a492d8bc0b70f3c63143d1ca19bf873ccb0.zip
Raise hard-coded FPS limit to 60
Diffstat (limited to 'src')
-rw-r--r--src/Render.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Render.cpp b/src/Render.cpp
index caebc29..58d5a42 100644
--- a/src/Render.cpp
+++ b/src/Render.cpp
@@ -9,7 +9,7 @@
 #include "Math/MVP.hpp"
 #include <thread>
 
-#define FPS_LIMIT 30
+#define FPS_LIMIT 60
 
 namespace MC {