diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -166,8 +166,10 @@ int main(int argc, char *argv[]) Render::render(fps); SDL_Event e; - while (SDL_PollEvent(&e)) + while (SDL_PollEvent(&e)) { + ui::handleGLEvent(e); eventQueue.push_back(e); + } } // on game end, get back together |