fix: frame_rate_limit now set to nullopt in default configure(...)

This commit is contained in:
Sara Gerretsen 2025-09-04 22:19:21 +02:00
parent 42d5596e60
commit a8f7525576

View file

@ -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;
}