aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/script.cpp
diff options
context:
space:
mode:
authorlukaslw2014-07-22 16:52:39 +0200
committerlukaslw2014-07-22 16:52:39 +0200
commitb6d81011e3b33235cf74e568455e97065cc9d198 (patch)
treedf3248644507b22ddc3065e67d8aaea009382705 /engines/prince/script.cpp
parent819ca0636ff9644088837cc9f0a1049277bbfddd (diff)
downloadscummvm-rg350-b6d81011e3b33235cf74e568455e97065cc9d198.tar.gz
scummvm-rg350-b6d81011e3b33235cf74e568455e97065cc9d198.tar.bz2
scummvm-rg350-b6d81011e3b33235cf74e568455e97065cc9d198.zip
PRINCE: plotTracePoint(), plotTraceLine(), tracePath(), approxPath() update
Diffstat (limited to 'engines/prince/script.cpp')
-rw-r--r--engines/prince/script.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/prince/script.cpp b/engines/prince/script.cpp
index 1badee0da1..f5b38cbe47 100644
--- a/engines/prince/script.cpp
+++ b/engines/prince/script.cpp
@@ -516,7 +516,7 @@ void Interpreter::O_WAITFOREVER() {
_vm->changeCursor(_vm->_currentPointerNumber);
_opcodeNF = 1;
_currentInstruction -= 2;
- debugInterpreter("O_WAITFOREVER");
+ //debugInterpreter("O_WAITFOREVER");
}
void Interpreter::O_BLACKPALETTE() {
@@ -1306,7 +1306,8 @@ void Interpreter::O_TALKBACKANIM() {
}
void Interpreter::O_LOADPATH() {
- int32 offset = readScript<uint32>();
+ readScript<uint32>();
+ //int32 offset = readScript<uint32>();
// simplifying, because used only once in Location 20
_vm->loadPath("path2");
debugInterpreter("O_LOADPATH - path2");
@@ -1744,6 +1745,7 @@ void Interpreter::O_HEROCOLOR() {
}
void Interpreter::O_GRABMAPA() {
+ _vm->grabMap();
debugInterpreter("O_GRABMAPA");
}