aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-03-02 12:14:06 +0000
committerTravis Howell2006-03-02 12:14:06 +0000
commit82a6f289de971fe051c2e944007dbb4d53aa492f (patch)
tree8431981c74b6703d61746263812d68526f5cf0f7 /engines/scumm/script_v2.cpp
parentf00809788b7c261598a1d1a2a0952256217fe456 (diff)
downloadscummvm-rg350-82a6f289de971fe051c2e944007dbb4d53aa492f.tar.gz
scummvm-rg350-82a6f289de971fe051c2e944007dbb4d53aa492f.tar.bz2
scummvm-rg350-82a6f289de971fe051c2e944007dbb4d53aa492f.zip
Fix using items in C64 maniac and cleanup
svn-id: r21011
Diffstat (limited to 'engines/scumm/script_v2.cpp')
-rw-r--r--engines/scumm/script_v2.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/engines/scumm/script_v2.cpp b/engines/scumm/script_v2.cpp
index 3b82677138..d13b045ed8 100644
--- a/engines/scumm/script_v2.cpp
+++ b/engines/scumm/script_v2.cpp
@@ -1612,14 +1612,10 @@ void ScummEngine_v2::o2_switchCostumeSet() {
}
void ScummEngine_v2::resetSentence() {
- if (_game.id == GID_MANIAC && _game.platform == Common::kPlatformC64) {
- // TODO
- } else {
- VAR(VAR_SENTENCE_VERB) = VAR(VAR_BACKUP_VERB);
- VAR(VAR_SENTENCE_OBJECT1) = 0;
- VAR(VAR_SENTENCE_OBJECT2) = 0;
- VAR(VAR_SENTENCE_PREPOSITION) = 0;
- }
+ VAR(VAR_SENTENCE_VERB) = VAR(VAR_BACKUP_VERB);
+ VAR(VAR_SENTENCE_OBJECT1) = 0;
+ VAR(VAR_SENTENCE_OBJECT2) = 0;
+ VAR(VAR_SENTENCE_PREPOSITION) = 0;
}
void ScummEngine_v2::runInventoryScript(int i) {