diff options
author | Matthew Hoops | 2007-06-22 18:57:07 +0000 |
---|---|---|
committer | Matthew Hoops | 2007-06-22 18:57:07 +0000 |
commit | 2496c5b5549f7b3b3f1d7777812631505f8d578f (patch) | |
tree | 20926c43df9b2e751769875b03d9ece18e028e45 | |
parent | 55f93678b8589b74922609d55774222ee7119f55 (diff) | |
download | scummvm-rg350-2496c5b5549f7b3b3f1d7777812631505f8d578f.tar.gz scummvm-rg350-2496c5b5549f7b3b3f1d7777812631505f8d578f.tar.bz2 scummvm-rg350-2496c5b5549f7b3b3f1d7777812631505f8d578f.zip |
fix compile (thanks salty-horse!)
svn-id: r27614
-rw-r--r-- | backends/platform/sdl/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/events.cpp b/backends/platform/sdl/events.cpp index 8738e63d95..c13c011efa 100644 --- a/backends/platform/sdl/events.cpp +++ b/backends/platform/sdl/events.cpp @@ -52,7 +52,7 @@ static int mapKey(SDLKey key, SDLMod mod, Uint16 unicode) { if (key >= SDLK_F1 && key <= SDLK_F9) { - return key - SDLK_F1 + ASCII_F1; + return key - SDLK_F1 + Common::ASCII_F1; } else if (key >= SDLK_KP0 && key <= SDLK_KP9) { return key - SDLK_KP0 + '0'; } else if (key >= SDLK_UP && key <= SDLK_PAGEDOWN) { |