diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-23 19:56:28 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-23 19:56:28 +0200 |
commit | c9246515fe785563411e9170aedd0231165ab988 (patch) | |
tree | e3b713e1e1200b26861e951e0b1ac4ab64d4eab6 /src/crepe/SdlContext.cpp | |
parent | adb7dfabec4811566308cd072e0542cd7eae8cc1 (diff) |
rendering and assetmanager
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; |