diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-25 19:39:11 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-25 19:39:11 +0100 |
commit | 9aca3626e31a7549f8c436672d4f479bd64c0057 (patch) | |
tree | 9255aa25ceea4d50cc50474bc27a50a007ce008d /src/crepe/facade/SDLContext.h | |
parent | b570225f5166b18fdd881fc53cd7013669067ca1 (diff) |
fixed a rezing and camera origin is now middlepoint
Diffstat (limited to 'src/crepe/facade/SDLContext.h')
-rw-r--r-- | src/crepe/facade/SDLContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/facade/SDLContext.h b/src/crepe/facade/SDLContext.h index 03f9ec9..3e9b8db 100644 --- a/src/crepe/facade/SDLContext.h +++ b/src/crepe/facade/SDLContext.h @@ -179,7 +179,7 @@ private: //! viewport for the camera window //todo change this so that it becomes a vec2 for only width and height - SDL_Rect viewport = {0, 0, 1280, 720}; + SDL_Rect viewport = {0, 0, 1200, 1200}; }; } // namespace crepe |