diff options
author | Ori Avtalion | 2016-10-18 19:24:51 +0300 |
---|---|---|
committer | Ori Avtalion | 2016-10-18 19:24:51 +0300 |
commit | fc85eb461d2baf78d339f456d4a91a174961ef12 (patch) | |
tree | 4e676748ff60e14b1e178884b5578404029972e2 /backends/graphics/openglsdl | |
parent | d890f99c85c17186d6c3703cdad7dcfe29a7747c (diff) | |
download | scummvm-rg350-fc85eb461d2baf78d339f456d4a91a174961ef12.tar.gz scummvm-rg350-fc85eb461d2baf78d339f456d4a91a174961ef12.tar.bz2 scummvm-rg350-fc85eb461d2baf78d339f456d4a91a174961ef12.zip |
SDL: Fix typo in function name
Diffstat (limited to 'backends/graphics/openglsdl')
-rw-r--r-- | backends/graphics/openglsdl/openglsdl-graphics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/graphics/openglsdl/openglsdl-graphics.cpp b/backends/graphics/openglsdl/openglsdl-graphics.cpp index 042cd49099..8f2ff1b9fa 100644 --- a/backends/graphics/openglsdl/openglsdl-graphics.cpp +++ b/backends/graphics/openglsdl/openglsdl-graphics.cpp @@ -360,7 +360,7 @@ void OpenGLSdlGraphicsManager::notifyResize(const uint width, const uint height) if (width != currentWidth || height != currentHeight) return; setActualScreenSize(width, height); - _eventSource->resetKeyboadEmulation(width - 1, height - 1); + _eventSource->resetKeyboardEmulation(width - 1, height - 1); #else if (!_ignoreResizeEvents && _hwScreen && !(_hwScreen->flags & SDL_FULLSCREEN)) { // We save that we handled a resize event here. We need to know this @@ -523,7 +523,7 @@ bool OpenGLSdlGraphicsManager::setupMode(uint width, uint height) { int actualWidth, actualHeight; getWindowDimensions(&actualWidth, &actualHeight); setActualScreenSize(actualWidth, actualHeight); - _eventSource->resetKeyboadEmulation(actualWidth - 1, actualHeight - 1); + _eventSource->resetKeyboardEmulation(actualWidth - 1, actualHeight - 1); return true; #else // WORKAROUND: Working around infamous SDL bugs when switching @@ -569,7 +569,7 @@ bool OpenGLSdlGraphicsManager::setupMode(uint width, uint height) { if (_hwScreen) { notifyContextCreate(rgba8888, rgba8888); setActualScreenSize(_hwScreen->w, _hwScreen->h); - _eventSource->resetKeyboadEmulation(_hwScreen->w - 1, _hwScreen->h - 1); + _eventSource->resetKeyboardEmulation(_hwScreen->w - 1, _hwScreen->h - 1); } // Ignore resize events (from SDL) for a few frames, if this isn't |