diff --git a/include/ApplicationSettings.hpp b/include/ApplicationSettings.hpp index 1ea1fc2..caefccd 100644 --- a/include/ApplicationSettings.hpp +++ b/include/ApplicationSettings.hpp @@ -3,9 +3,9 @@ #include struct ApplicationSettings { - unsigned int width{0U}; - unsigned int height{0U}; + unsigned int width = 0U; + unsigned int height = 0U; std::string title; - float fixedDeltaTime{1.0f / 64.0f}; - float timeScale{1.0f}; + float fixedDeltaTime = 1.0f / 64.0f; + float timeScale = 1.0f; };