diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/gameDetector.cpp | 1 | ||||
-rw-r--r-- | common/scaler.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index 163888b86f..e2ef0aadf6 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -103,6 +103,7 @@ static const struct GraphicsMode gfx_modes[] = { #else {"flipping", "Page Flipping", GFX_FLIPPING}, {"dbuffer", "Double Buffer", GFX_DOUBLEBUFFER}, + {"wide", "Wide (HiRes+ only)", GFX_WIDE}, #endif {0, 0, 0} }; diff --git a/common/scaler.h b/common/scaler.h index a743ee063e..cf55d93733 100644 --- a/common/scaler.h +++ b/common/scaler.h @@ -55,7 +55,8 @@ enum { GFX_DOTMATRIX = 9, GFX_FLIPPING = 100, // Palmos - GFX_DOUBLEBUFFER = 101 // Palmos + GFX_DOUBLEBUFFER = 101, // Palmos + GFX_WIDE = 102 // palmos }; |