diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index b7cc02fe..acf2d5a2 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -397,7 +397,8 @@ void Game::handleInput() if (event.type == SDL_WINDOWEVENT && event.window.event == SDL_WINDOWEVENT_SIZE_CHANGED) { // Let the client deal with this one (it'll pass down from there) - Client::instance()->videoResized(event.window.data1, event.window.data2); + Client::instance()->handleWindowSizeChanged(event.window.data1, + event.window.data2); } // Keyboard events (for discontinuous keys) else if (event.type == SDL_KEYDOWN) |