aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicola Mettifogo2008-02-03 16:56:25 +0000
committerNicola Mettifogo2008-02-03 16:56:25 +0000
commitda98d10ebd74dfb0d6fda73b431eff3949bdf4bf (patch)
treea5f315884d95df0e92752ee81f7e42a70e8f99ab
parentaea99780ef0d0098bdb03041ef16115c2ec4abb0 (diff)
downloadscummvm-rg350-da98d10ebd74dfb0d6fda73b431eff3949bdf4bf.tar.gz
scummvm-rg350-da98d10ebd74dfb0d6fda73b431eff3949bdf4bf.tar.bz2
scummvm-rg350-da98d10ebd74dfb0d6fda73b431eff3949bdf4bf.zip
instOp_on and instOp_off are now implemented, so removed warnings.
svn-id: r30771
-rw-r--r--engines/parallaction/exec_br.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/parallaction/exec_br.cpp b/engines/parallaction/exec_br.cpp
index b4aa25a57d..49c42ca0da 100644
--- a/engines/parallaction/exec_br.cpp
+++ b/engines/parallaction/exec_br.cpp
@@ -293,8 +293,6 @@ DECLARE_COMMAND_OPCODE(offsave) {
DECLARE_INSTRUCTION_OPCODE(on) {
- warning("Parallaction_br::instOp_on not yet implemented");
-
Instruction *inst = *_instRunCtxt.inst;
Zone *z = inst->_z;
@@ -306,13 +304,10 @@ DECLARE_INSTRUCTION_OPCODE(on) {
_gfx->showGfxObj(z->u.get->gfxobj, true);
}
}
-
}
DECLARE_INSTRUCTION_OPCODE(off) {
- warning("Parallaction_br::instOp_off not yet implemented");
-
Instruction *inst = *_instRunCtxt.inst;
Zone *z = inst->_z;