From 16a522ea928f2b5057ed6950e6ffc9111afd2ec7 Mon Sep 17 00:00:00 2001 From: bailwillharr Date: Wed, 11 Jan 2023 09:53:42 +0000 Subject: [PATCH] Enable frame limiter; fix linux compilation --- src/util/files.cpp | 1 + test/src/game.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/files.cpp b/src/util/files.cpp index 8ec8118..4b203b3 100644 --- a/src/util/files.cpp +++ b/src/util/files.cpp @@ -3,6 +3,7 @@ #include "stb_image.h" #include +#include namespace engine::util { diff --git a/test/src/game.cpp b/test/src/game.cpp index a792e99..e43cd1c 100644 --- a/test/src/game.cpp +++ b/test/src/game.cpp @@ -51,7 +51,7 @@ void playGame() { engine::Application app(PROJECT_NAME, PROJECT_VERSION); - app.setFrameLimiter(false); + app.setFrameLimiter(true); // configure window app.window()->setRelativeMouseMode(true);