aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-08-17 07:02:33 +0000
committerTravis Howell2003-08-17 07:02:33 +0000
commitbbbca4f8fe7ec7174709c1361103fcc05f92d8f3 (patch)
treeef5ed27f4ebebcf572f40f071e3c4f83a0b25ed1 /scumm/script.cpp
parent811f29fe79ee90735e24013e667cebc8344715a9 (diff)
downloadscummvm-rg350-bbbca4f8fe7ec7174709c1361103fcc05f92d8f3.tar.gz
scummvm-rg350-bbbca4f8fe7ec7174709c1361103fcc05f92d8f3.tar.bz2
scummvm-rg350-bbbca4f8fe7ec7174709c1361103fcc05f92d8f3.zip
Fix text display in verb/inventory area in demo mode of V1 maniac mansion
svn-id: r9734
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index 955da3f7e6..c2d9c321d0 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -657,6 +657,11 @@ void Scumm::stopObjectCode() {
}
void Scumm::runInventoryScript(int i) {
+ // FIXME demo mode in V1 Maniac Mansion shows quotes in this area
+ // during the introduction
+ if (_gameId == GID_MANIAC && _version == 1 && _demo_mode)
+ return;
+
if (_version <= 2) {
redrawV2Inventory();
} else {