aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/sdl/sdl-common.cpp2
-rw-r--r--common/scaler.h4
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,