diff options
author | Torbjörn Andersson | 2003-09-28 14:27:08 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-09-28 14:27:08 +0000 |
commit | 2d3e97049629c48494ea8d4641e57e699e6a8498 (patch) | |
tree | 6de54006f7cd9948fda14a1cda52959d0b5917fc | |
parent | 49fa159ed4a7edb99891de2c54e5e30b7aaa86a9 (diff) | |
download | scummvm-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
-rw-r--r-- | backends/sdl/sdl-common.cpp | 2 | ||||
-rw-r--r-- | common/scaler.h | 4 |
2 files changed, 3 insertions, 3 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); diff --git a/common/scaler.h b/common/scaler.h index ab2a6ba852..a59f9b2103 100644 --- a/common/scaler.h +++ b/common/scaler.h @@ -63,8 +63,8 @@ enum { GFX_SUPER2XSAI = 4, GFX_SUPEREAGLE = 5, GFX_ADVMAME2X = 6, - GFX_ADVMAME3X = 7, - GFX_HQ2X = 8, + GFX_HQ2X = 7, + GFX_ADVMAME3X = 8, GFX_HQ3X = 9, GFX_TV2X = 10, GFX_DOTMATRIX = 11, |