From 3ffcf5e332dc4cb6cf2e966db5d0d3a369eee711 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 19:19:06 -0400 Subject: Scaled up entities and stopped player from flashing --- src/render.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/render.hpp') diff --git a/src/render.hpp b/src/render.hpp index 6362d63..5d3025c 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -38,8 +38,8 @@ class RenderSystem : public entityx::System { private: constexpr static const char *title = "gamedev2"; - constexpr static int width = 640; - constexpr static int height = 480; + constexpr static int width = 1280; + constexpr static int height = 720; std::unique_ptr window; SDL_GLContext context; -- cgit v1.2.3