Add changes from madmoose to fix initial song length.
svn-id: r25219
This commit is contained in:
parent
b867202199
commit
20aca1092b
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue