diff options
author | Stephen Kennedy | 2008-08-13 19:24:52 +0000 |
---|---|---|
committer | Stephen Kennedy | 2008-08-13 19:24:52 +0000 |
commit | 70dde2d8bdfeb0e86a76d196193339f9ec9e17ab (patch) | |
tree | f7fb58f22d08e815b06e8dc7bb6058079a4b2cef /backends/platform | |
parent | 6b638f0e58d45096ca77cfafec5e59b14e706d1a (diff) | |
download | scummvm-rg350-70dde2d8bdfeb0e86a76d196193339f9ec9e17ab.tar.gz scummvm-rg350-70dde2d8bdfeb0e86a76d196193339f9ec9e17ab.tar.bz2 scummvm-rg350-70dde2d8bdfeb0e86a76d196193339f9ec9e17ab.zip |
RemapDialog now properly uses reflowLayout() and open(), so that the same instance can be reopened
svn-id: r33843
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/sdl/events.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/platform/sdl/events.cpp b/backends/platform/sdl/events.cpp index 4731ae59c9..ad62ddb6f5 100644 --- a/backends/platform/sdl/events.cpp +++ b/backends/platform/sdl/events.cpp @@ -566,6 +566,10 @@ void OSystem_SDL::setupKeymapper() { ADD_KEYDOWN_EVENT(KEYCODE_d, 'd', 0); specific->addAction(act); + act = new Action('RUN_', "Run"); + ADD_KEYDOWN_EVENT(KEYCODE_r, 'r', 0); + specific->addAction(act); + #undef ADD_KEYDOWN_EVENT mapper->addGlobalKeymap(global); |