diff options
-rw-r--r-- | sound/mods/module.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/mods/module.cpp b/sound/mods/module.cpp index 9a518f482a..088522bc3a 100644 --- a/sound/mods/module.cpp +++ b/sound/mods/module.cpp @@ -46,8 +46,8 @@ bool Module::load(Common::ReadStream &st) { sample[i].replen = 2 * st.readUint16BE(); } - songlen = 2 * st.readByte(); - undef = 2 * st.readByte(); + songlen = st.readByte(); + undef = st.readByte(); st.read(songpos, 128); st.read(sig, 4); |