aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/exec_br.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2009-03-02 15:31:07 +0000
committerNicola Mettifogo2009-03-02 15:31:07 +0000
commit040da3353f98ec5e92bede2ec07c49d4bb87239d (patch)
treeb33ad6714c544a7a564121fbfabd78992803dd2c /engines/parallaction/exec_br.cpp
parent2913a561cc6eebc05d038f27076ada8a6bb6a6f7 (diff)
downloadscummvm-rg350-040da3353f98ec5e92bede2ec07c49d4bb87239d.tar.gz
scummvm-rg350-040da3353f98ec5e92bede2ec07c49d4bb87239d.tar.bz2
scummvm-rg350-040da3353f98ec5e92bede2ec07c49d4bb87239d.zip
Marked PUT, PRINT and WAIT commands as not used in the scripts of BRA (thus they won't be implemented).
svn-id: r39075
Diffstat (limited to 'engines/parallaction/exec_br.cpp')
-rw-r--r--engines/parallaction/exec_br.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/engines/parallaction/exec_br.cpp b/engines/parallaction/exec_br.cpp
index 0ad0220567..04969fcad4 100644
--- a/engines/parallaction/exec_br.cpp
+++ b/engines/parallaction/exec_br.cpp
@@ -422,13 +422,15 @@ DECLARE_INSTRUCTION_OPCODE(inc) {
DECLARE_INSTRUCTION_OPCODE(put) {
- warning("Parallaction_br::instOp_put not yet implemented");
+ // NOTE: there is not a single occurrence of PUT in the scripts
+ warning("PUT instruction is not implemented!");
}
DECLARE_INSTRUCTION_OPCODE(wait) {
- warning("Parallaction_br::instOp_wait not yet implemented");
+ // NOTE: there is not a single occurrence of WAIT in the scripts
+ warning("WAIT instruction is not implemented!");
}
@@ -464,7 +466,9 @@ DECLARE_INSTRUCTION_OPCODE(mask) {
DECLARE_INSTRUCTION_OPCODE(print) {
- warning("Parallaction_br::instOp_print not yet implemented");
+ // NOTE: there is not a single occurrence of PRINT in the scripts
+ // I suppose it was used for debugging
+ warning("PRINT instruction is not implemented!");
}
DECLARE_INSTRUCTION_OPCODE(text) {