diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lilliput/script.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/engines/lilliput/script.cpp b/engines/lilliput/script.cpp index f8c3dc0b15..5505645ab0 100644 --- a/engines/lilliput/script.cpp +++ b/engines/lilliput/script.cpp @@ -3105,12 +3105,11 @@ void LilliputScript::OC_disableInterfaceHotspot() { void LilliputScript::OC_loadFile_AERIAL_GFX() { debugC(1, kDebugScriptTBC, "OC_loadFile_AERIAL_GFX()"); - -// Unused variable -// int var1 = _currScript->readUint16LE() & 0xFF; -// byte _byte15EAD = var1; -// _currScript->readUint16LE(); // di is restored afterwards so do nothing -// + + // Unused variable, and the script position is restored afterwards + // TODO: Check if this part of the code is present in Rome, else remove it + // int var1 = _currScript->readUint16LE() & 0xFF; + // byte _byte15EAD = var1; _vm->_refreshScreenFlag = true; _talkingCharacter = -1; |