diff options
-rw-r--r-- | engines/agos/vga.cpp | 5 |
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; |