diff options
author | Norbert Lange | 2009-07-01 23:16:18 +0000 |
---|---|---|
committer | Norbert Lange | 2009-07-01 23:16:18 +0000 |
commit | d2003f859b07389e788d03b099b3478282d04320 (patch) | |
tree | c91ca5db076dfcd267db7adbe30aaaeec78148be | |
parent | 9f8d9de11db887801940a042c59da9591b120bf5 (diff) | |
download | scummvm-rg350-d2003f859b07389e788d03b099b3478282d04320.tar.gz scummvm-rg350-d2003f859b07389e788d03b099b3478282d04320.tar.bz2 scummvm-rg350-d2003f859b07389e788d03b099b3478282d04320.zip |
whoops - now its compiling again
svn-id: r42014
-rw-r--r-- | tfmx/mxtxplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tfmx/mxtxplayer.cpp b/tfmx/mxtxplayer.cpp index b7f59a3327..d8ba6a8fcb 100644 --- a/tfmx/mxtxplayer.cpp +++ b/tfmx/mxtxplayer.cpp @@ -73,7 +73,7 @@ bool load(Common::SeekableReadStream &musicData) { uint16 numSamples; // uint16 number of Samples - numSamples = numSamples.readUint16BE(); + numSamples = musicData.readUint16BE(); for (int i = 0; i < numSamples; ++i) { // load disksample structure uint16 number = musicData.readUint16BE(); |