diff options
Diffstat (limited to 'source/gui.cpp')
-rw-r--r-- | source/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gui.cpp b/source/gui.cpp index fad451e..47291c6 100644 --- a/source/gui.cpp +++ b/source/gui.cpp @@ -26,7 +26,7 @@ static decltype(SDL_GL_CreateContext(nullptr)) gl_context; bool guiInitialize() { - if (SDL_Init(SDL_INIT_VIDEO) != 0) { + if (SDL_Init(/*SDL_INIT_VIDEO*/0) != 0) { printf("Error: %s\n", SDL_GetError()); return false; } |