aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/sdl.h
diff options
context:
space:
mode:
authorMax Horn2009-11-09 23:58:12 +0000
committerMax Horn2009-11-09 23:58:12 +0000
commit1f37da26263d137397f8787500d771dca0d460fe (patch)
treee53817c7d7a7e7e8692c847ecd9681544b2abe6c /backends/platform/sdl/sdl.h
parentd6d2c5d7b83027c21f8e00d364c925ca5f45c392 (diff)
downloadscummvm-rg350-1f37da26263d137397f8787500d771dca0d460fe.tar.gz
scummvm-rg350-1f37da26263d137397f8787500d771dca0d460fe.tar.bz2
scummvm-rg350-1f37da26263d137397f8787500d771dca0d460fe.zip
Revert rev 45791 and make the first param of OSystem_SDL::remapKey again non-const (as it may have to be modified for remapping. Of course. Silly me :/)
svn-id: r45796
Diffstat (limited to 'backends/platform/sdl/sdl.h')
-rw-r--r--backends/platform/sdl/sdl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h
index e17cd5c086..f9849e34d1 100644
--- a/backends/platform/sdl/sdl.h
+++ b/backends/platform/sdl/sdl.h
@@ -486,7 +486,7 @@ protected:
void setupIcon();
void handleKbdMouse();
- virtual bool remapKey(const SDL_Event &ev, Common::Event &event);
+ virtual bool remapKey(SDL_Event &ev, Common::Event &event);
void handleScalerHotkeys(const SDL_KeyboardEvent &key);
};