Improve input in C64 maniac

svn-id: r21000
This commit is contained in:
Travis Howell 2006-03-02 01:17:41 +00:00
parent c01ef102af
commit fd8f11f7a4
6 changed files with 97 additions and 60 deletions

View file

@ -1612,10 +1612,14 @@ void ScummEngine_v2::o2_switchCostumeSet() {
}
void ScummEngine_v2::resetSentence() {
VAR(VAR_SENTENCE_VERB) = VAR(VAR_BACKUP_VERB);
VAR(VAR_SENTENCE_OBJECT1) = 0;
VAR(VAR_SENTENCE_OBJECT2) = 0;
VAR(VAR_SENTENCE_PREPOSITION) = 0;
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;
}
}
void ScummEngine_v2::runInventoryScript(int i) {