diff options
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render.hpp b/src/render.hpp index 88668cc..c4456cf 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -56,9 +56,9 @@ class RenderSystem : public entityx::System<RenderSystem>, public entityx::Receiver<RenderSystem> { private: - constexpr static const char *title = "gamedev2"; - constexpr static int width = 1280; - constexpr static int height = 720; + std::string title; + int width; + int height; std::unique_ptr<SDL_Window, void (*)(SDL_Window *)> window; SDL_GLContext context; |