aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-09-28 14:27:08 +0000
committerTorbjörn Andersson2003-09-28 14:27:08 +0000
commit2d3e97049629c48494ea8d4641e57e699e6a8498 (patch)
tree6de54006f7cd9948fda14a1cda52959d0b5917fc /backends
parent49fa159ed4a7edb99891de2c54e5e30b7aaa86a9 (diff)
downloadscummvm-rg350-2d3e97049629c48494ea8d4641e57e699e6a8498.tar.gz
scummvm-rg350-2d3e97049629c48494ea8d4641e57e699e6a8498.tar.bz2
scummvm-rg350-2d3e97049629c48494ea8d4641e57e699e6a8498.zip
Slightly more sensible hotkeys for the scalers. Hq2x is now number 8, right
after AdvMame2x, and 9 and 0 are AdvMame3x and Hq3x respectively. I agree with Fingolfin that we'll need a better way of handling this in the future, though. svn-id: r10461
Diffstat (limited to 'backends')
-rw-r--r--backends/sdl/sdl-common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp
index 6f4aee9506..aabd2d2f80 100644
--- a/backends/sdl/sdl-common.cpp
+++ b/backends/sdl/sdl-common.cpp
@@ -615,7 +615,7 @@ bool OSystem_SDL_Common::poll_event(Event *event) {
// Ctr-Alt-<key> will change the GFX mode
if (b == (KBD_CTRL|KBD_ALT)) {
- const char keys[] = "123456789cd";
+ const char keys[] = "1234567890cd";
char *ptr;
ptr = strchr(keys, ev.key.keysym.sym);