aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2007-06-09 06:17:04 +0000
committerTravis Howell2007-06-09 06:17:04 +0000
commit48601a4e70f49754da5031916c67ecc32657c6b0 (patch)
tree711bf8e0d428cfddb5e749bbd9a410edd44eb4e0
parent14aa27c4771059382bf9e1094263e11eabfda428 (diff)
downloadscummvm-rg350-48601a4e70f49754da5031916c67ecc32657c6b0.tar.gz
scummvm-rg350-48601a4e70f49754da5031916c67ecc32657c6b0.tar.bz2
scummvm-rg350-48601a4e70f49754da5031916c67ecc32657c6b0.zip
Clarify purpose of the endRepeat opcude, used by video script.
svn-id: r27228
-rw-r--r--engines/agos/vga.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/agos/vga.cpp b/engines/agos/vga.cpp
index 49c765b7ff..8b9d685dec 100644
--- a/engines/agos/vga.cpp
+++ b/engines/agos/vga.cpp
@@ -843,10 +843,7 @@ void AGOSEngine::vc19_loop() {
}
void AGOSEngine::vc20_setRepeat() {
- /* FIXME: This opcode is somewhat strange: it first reads a BE word from
- * the script (advancing the script pointer in doing so); then it writes
- * back the same word, this time as LE, into the script.
- */
+ // Sets counter used by the endRepeat opcode below.
uint16 a = vcReadNextWord();
WRITE_LE_UINT16(const_cast<byte *>(_vcPtr), a);
_vcPtr += 2;