From bb4601c5bd4cac9e7cb574cb84088bdbf7d02025 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Wed, 6 Mar 2024 15:59:12 -0600 Subject: [PATCH] Chenged FPS to 60 for release build --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 02e1207..3403392 100644 --- a/main.cpp +++ b/main.cpp @@ -211,7 +211,7 @@ int main(int argc, char** argv) { SetTraceLogLevel(LOG_NONE); raylib::Window window = raylib::Window(WIDTH, HEIGHT, "Pong"); window.ClearBackground(BLACK); - SetTargetFPS(10); + SetTargetFPS(60); SetExitKey(KEY_Q); std::string points_str = std::string("0\t\t0"); bool game_started = false;