diff options
author | Colin Snover | 2017-11-14 19:10:28 -0600 |
---|---|---|
committer | Eugene Sandulenko | 2017-11-18 22:35:12 +0100 |
commit | 0e28f2be4776f2b581ce47865468bad20b84e547 (patch) | |
tree | 2b4407f7dc4a797604dc1b001227191052920deb | |
parent | d07e9a0cf108cfc1525060e9d1b2260c26b901df (diff) | |
download | scummvm-rg350-0e28f2be4776f2b581ce47865468bad20b84e547.tar.gz scummvm-rg350-0e28f2be4776f2b581ce47865468bad20b84e547.tar.bz2 scummvm-rg350-0e28f2be4776f2b581ce47865468bad20b84e547.zip |
FULLPIPE: Remove unused gap data from EntranceInfo
-rw-r--r-- | engines/fullpipe/interaction.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/interaction.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/engines/fullpipe/interaction.cpp b/engines/fullpipe/interaction.cpp index 4e3a3a3d86..1d04aa019d 100644 --- a/engines/fullpipe/interaction.cpp +++ b/engines/fullpipe/interaction.cpp @@ -543,7 +543,7 @@ bool EntranceInfo::load(MfcArchive &file) { _sceneId = file.readUint32LE(); _field_4 = file.readUint32LE(); _messageQueueId = file.readUint32LE(); - file.read(_gap_C, 292); // FIXME, Ugh + file.skip(292); // FIXME: Ugh _field_130 = file.readUint32LE(); return true; diff --git a/engines/fullpipe/interaction.h b/engines/fullpipe/interaction.h index 89af8d7a8f..97fb19beb9 100644 --- a/engines/fullpipe/interaction.h +++ b/engines/fullpipe/interaction.h @@ -90,7 +90,6 @@ struct EntranceInfo { int32 _sceneId; int32 _field_4; int32 _messageQueueId; - byte _gap_C[292]; // FIXME int32 _field_130; bool load(MfcArchive &file); |