diff options
| author | Travis Howell | 2006-09-29 05:33:22 +0000 |
|---|---|---|
| committer | Travis Howell | 2006-09-29 05:33:22 +0000 |
| commit | 8d0d856bd85b11998655608a3ca4d1e52e129c96 (patch) | |
| tree | c1f11afc810763a5929cb23566264f8bbeefbebf /engines/simon/simon.cpp | |
| parent | 5a8f3df4e8b131c3d393ebd0bea1b4ed08bd815e (diff) | |
| download | scummvm-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.cpp | 5 |
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 { |
