diff options
author | Chris Apers | 2003-05-26 12:59:16 +0000 |
---|---|---|
committer | Chris Apers | 2003-05-26 12:59:16 +0000 |
commit | bf565613b2daaf7b3e3a75ab4715517265ddadf8 (patch) | |
tree | 2933cac65a6995cfa7955a0b37022e49eda4cad7 | |
parent | ad874a4fd5cec586fef2f2755013864112b25e9b (diff) | |
download | scummvm-rg350-bf565613b2daaf7b3e3a75ab4715517265ddadf8.tar.gz scummvm-rg350-bf565613b2daaf7b3e3a75ab4715517265ddadf8.tar.bz2 scummvm-rg350-bf565613b2daaf7b3e3a75ab4715517265ddadf8.zip |
Prepare support for wide display on HiRes+ device
svn-id: r8001
-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 }; |