aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2003-08-24 02:11:14 +0000
committerTravis Howell2003-08-24 02:11:14 +0000
commit72bfe15f5037b55fb7601a999f69a6f55943d224 (patch)
treeb8b1c66c152bc1720f351877e47af50ae185de98
parent79036c5a1dc6e280b0f1454a6b640e546bb36b4b (diff)
downloadscummvm-rg350-72bfe15f5037b55fb7601a999f69a6f55943d224.tar.gz
scummvm-rg350-72bfe15f5037b55fb7601a999f69a6f55943d224.tar.bz2
scummvm-rg350-72bfe15f5037b55fb7601a999f69a6f55943d224.zip
Update comment
svn-id: r9838
-rw-r--r--scumm/script_v2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 59b8ec7adb..9bd1c7fedf 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -1349,12 +1349,12 @@ void Scumm_v2::o2_cutscene() {
VAR(VAR_CURSORSTATE) = 200;
- // FIXME demo mode in V1 Maniac Mansion shows quotes in this area
- // during the introduction
- if (!(_gameId == GID_MANIAC && _version == 1 && _demo_mode)) {
+ // FIXME allows quotes script (173) to start during introudction of
+ // demo mode of V1 Maniac Mansion. setUserState was halting script
+ // 173 before it started.
+ if (!(_gameId == GID_MANIAC && _version == 1 && _demo_mode))
// Hide inventory, freeze scripts, hide cursor
setUserState(15);
- }
_sentenceNum = 0;
stopScript(SENTENCE_SCRIPT);