aboutsummaryrefslogtreecommitdiff
path: root/engines/simon/simon.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-09-29 05:33:22 +0000
committerTravis Howell2006-09-29 05:33:22 +0000
commit8d0d856bd85b11998655608a3ca4d1e52e129c96 (patch)
treec1f11afc810763a5929cb23566264f8bbeefbebf /engines/simon/simon.cpp
parent5a8f3df4e8b131c3d393ebd0bea1b4ed08bd815e (diff)
downloadscummvm-rg350-8d0d856bd85b11998655608a3ca4d1e52e129c96.tar.gz
scummvm-rg350-8d0d856bd85b11998655608a3ca4d1e52e129c96.tar.bz2
scummvm-rg350-8d0d856bd85b11998655608a3ca4d1e52e129c96.zip
Add last game (dimp) of PP
svn-id: r24002
Diffstat (limited to 'engines/simon/simon.cpp')
-rw-r--r--engines/simon/simon.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp
index 74cc08ee8c..d238b7e269 100644
--- a/engines/simon/simon.cpp
+++ b/engines/simon/simon.cpp
@@ -422,7 +422,10 @@ int SimonEngine::init() {
return -1;
}
- if (getGameType() == GType_FF || getGameType() == GType_PP) {
+ if (getGameId() == GID_DIMP) {
+ _screenWidth = 496;
+ _screenHeight = 400;
+ } else if (getGameType() == GType_FF || getGameType() == GType_PP) {
_screenWidth = 640;
_screenHeight = 480;
} else {