aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/wincesdl
diff options
context:
space:
mode:
authorOri Avtalion2016-10-18 19:24:51 +0300
committerOri Avtalion2016-10-18 19:24:51 +0300
commitfc85eb461d2baf78d339f456d4a91a174961ef12 (patch)
tree4e676748ff60e14b1e178884b5578404029972e2 /backends/graphics/wincesdl
parentd890f99c85c17186d6c3703cdad7dcfe29a7747c (diff)
downloadscummvm-rg350-fc85eb461d2baf78d339f456d4a91a174961ef12.tar.gz
scummvm-rg350-fc85eb461d2baf78d339f456d4a91a174961ef12.tar.bz2
scummvm-rg350-fc85eb461d2baf78d339f456d4a91a174961ef12.zip
SDL: Fix typo in function name
Diffstat (limited to 'backends/graphics/wincesdl')
-rw-r--r--backends/graphics/wincesdl/wincesdl-graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/graphics/wincesdl/wincesdl-graphics.cpp b/backends/graphics/wincesdl/wincesdl-graphics.cpp
index 07f7d47262..44a1214a44 100644
--- a/backends/graphics/wincesdl/wincesdl-graphics.cpp
+++ b/backends/graphics/wincesdl/wincesdl-graphics.cpp
@@ -934,7 +934,7 @@ bool WINCESdlGraphicsManager::loadGFXMode() {
_toolbarHigh = NULL;
// keyboard cursor control, some other better place for it?
- _eventSource->resetKeyboadEmulation(_videoMode.screenWidth * _scaleFactorXm / _scaleFactorXd - 1, _videoMode.screenHeight * _scaleFactorXm / _scaleFactorXd - 1);
+ _eventSource->resetKeyboardEmulation(_videoMode.screenWidth * _scaleFactorXm / _scaleFactorXd - 1, _videoMode.screenHeight * _scaleFactorXm / _scaleFactorXd - 1);
return true;
}