diff options
author | Alyssa Milburn | 2011-12-08 23:18:08 +0100 |
---|---|---|
committer | Alyssa Milburn | 2011-12-08 23:18:08 +0100 |
commit | 64c5a12d604f09a1c0322b698f35136d46b4d621 (patch) | |
tree | 9128321ccca10e44e45f31b5af100fc64d74773d /engines | |
parent | ef224759888ae627743c64cb4a47fc6a30874189 (diff) | |
download | scummvm-rg350-64c5a12d604f09a1c0322b698f35136d46b4d621.tar.gz scummvm-rg350-64c5a12d604f09a1c0322b698f35136d46b4d621.tar.bz2 scummvm-rg350-64c5a12d604f09a1c0322b698f35136d46b4d621.zip |
MOHAWK: Fix LBCode goto notify.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/livingbooks_code.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks_code.cpp b/engines/mohawk/livingbooks_code.cpp index e821e7e54d..0cb99f709e 100644 --- a/engines/mohawk/livingbooks_code.cpp +++ b/engines/mohawk/livingbooks_code.cpp @@ -1462,7 +1462,7 @@ void LBCode::runNotifyCommand() { debugN("goto"); Common::Array<LBValue> params = readParams(); // TODO: type-checking - NotifyEvent notifyEvent(kLBNotifyChangePage, 0); + NotifyEvent notifyEvent(kLBNotifyChangePage, 1); switch (params.size()) { case 4: notifyEvent.type = kLBNotifyChangeMode; // FIXME: type 8? |