diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-10 20:17:52 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-10 20:17:52 -0400 |
commit | a1700f3ca6456a3215165c7d59564c594e22cafd (patch) | |
tree | f4261405ad05311972deb15b5d267dfd4c345036 /source/gui.cpp | |
parent | e976308b6f36a9480671ce39dfce86a4aabfb7d2 (diff) |
finished draw samples, can draw input too
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; } |