diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 20:03:18 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 20:03:18 +0200 |
commit | 3789031ac520b393969bbedd55444e3fd2b7f1fa (patch) | |
tree | 212f78845ae1f8972a96636e8425b080a64c7e05 /src/crepe/SdlContext.cpp | |
parent | edbb6c892299e3b7f93638abcc9e55b2cfce2358 (diff) | |
parent | c9246515fe785563411e9170aedd0231165ab988 (diff) |
merge with niels/rendering
Diffstat (limited to 'src/crepe/SdlContext.cpp')
-rw-r--r-- | src/crepe/SdlContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/SdlContext.cpp b/src/crepe/SdlContext.cpp index cc5148c..09d9c9b 100644 --- a/src/crepe/SdlContext.cpp +++ b/src/crepe/SdlContext.cpp @@ -57,7 +57,7 @@ SdlContext::SdlContext() { m_game_window = SDL_CreateWindow( "Crepe Game Engine", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, - 1920, 1080, SDL_WINDOW_HIDDEN); + 1920, 1080, SDL_WINDOW_SHOWN); if (!m_game_window) { std::cerr << "Window could not be created! SDL_Error: " << SDL_GetError() << std::endl; |