diff options
author | Colin Snover | 2017-02-08 12:02:34 -0600 |
---|---|---|
committer | Colin Snover | 2017-04-23 13:07:25 -0500 |
commit | 7997451384b13f9f14091504661cd7e6180a8526 (patch) | |
tree | 5bb5aa638183c74f3a9db0ff003bff990697b250 /engines/sci/engine | |
parent | 866419fa71d398edcf087e67f7367deeadd04f14 (diff) | |
download | scummvm-rg350-7997451384b13f9f14091504661cd7e6180a8526.tar.gz scummvm-rg350-7997451384b13f9f14091504661cd7e6180a8526.tar.bz2 scummvm-rg350-7997451384b13f9f14091504661cd7e6180a8526.zip |
SCI32: Remove TODO from relocateOffsetSci3
The field at +8 is for the MemID associated with a relocation.
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/script.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/sci/engine/script.cpp b/engines/sci/engine/script.cpp index be1fa3ff1f..86f9d8d1d9 100644 --- a/engines/sci/engine/script.cpp +++ b/engines/sci/engine/script.cpp @@ -699,7 +699,6 @@ int Script::relocateOffsetSci3(uint32 offset) const { for (int i = 0; i < relocCount; ++i) { if (seeker.getUint32SEAt(0) == offset) { - // TODO: Find out what UINT16 at (seeker + 8) means return _buf->getUint16SEAt(offset) + seeker.getUint32SEAt(4); } seeker += 10; |