diff options
| author | Max Horn | 2003-07-12 21:28:04 +0000 |
|---|---|---|
| committer | Max Horn | 2003-07-12 21:28:04 +0000 |
| commit | 187b715306a7a1912e71a0854992a54115d1f751 (patch) | |
| tree | dde92d8fa8015c8d2aac03cfa6c5d302d1a603c5 /scumm/script.cpp | |
| parent | be261b5d7ce11bfd5705d3c42787293db1315fb8 (diff) | |
| download | scummvm-rg350-187b715306a7a1912e71a0854992a54115d1f751.tar.gz scummvm-rg350-187b715306a7a1912e71a0854992a54115d1f751.tar.bz2 scummvm-rg350-187b715306a7a1912e71a0854992a54115d1f751.zip | |
run script 5 in startScene (room transition script, it seems); don't invoke runInputScript(4) - it is not needed (runInputScript will be called by checkExecVerbs), and causes the buggy 'What is' command behavior); fixed V2 sentence line
svn-id: r8955
Diffstat (limited to 'scumm/script.cpp')
| -rw-r--r-- | scumm/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp index b27b3f1b94..151b8dcb4a 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -865,7 +865,7 @@ void Scumm::doSentence(int verb, int objectA, int objectB) { void Scumm::checkAndRunSentenceScript() { int i; - ScriptSlot *ss; + const ScriptSlot *ss; int sentenceScript; if (_version <= 2) sentenceScript = 2; |
