From a8f7525576e805551e4f6e08b76dcab627ca55ed Mon Sep 17 00:00:00 2001 From: Sara Gerretsen Date: Thu, 4 Sep 2025 22:19:21 +0200 Subject: [PATCH] fix: frame_rate_limit now set to nullopt in default configure(...) --- src/CHANGEME.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CHANGEME.cpp b/src/CHANGEME.cpp index daa321e..2d00750 100644 --- a/src/CHANGEME.cpp +++ b/src/CHANGEME.cpp @@ -9,7 +9,7 @@ void configure(AppConfig &config) { config.window_title = "MYPROJECT"; - config.frame_rate_limit = 60; + config.frame_rate_limit = std::nullopt; config.vsync = true; }