diff options
author | Travis Howell | 2007-07-28 07:56:58 +0000 |
---|---|---|
committer | Travis Howell | 2007-07-28 07:56:58 +0000 |
commit | d764dca90f157fb9c99491874f60013991502e25 (patch) | |
tree | 24838bf1aa186b797c762180f718e875e79f78ea | |
parent | bb2796c57a5bd6cfb417340e6cfda141eee9342e (diff) | |
download | scummvm-rg350-d764dca90f157fb9c99491874f60013991502e25.tar.gz scummvm-rg350-d764dca90f157fb9c99491874f60013991502e25.tar.bz2 scummvm-rg350-d764dca90f157fb9c99491874f60013991502e25.zip |
Ooops, fix typo in last commit.
svn-id: r28257
-rw-r--r-- | sound/mods/module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mods/module.cpp b/sound/mods/module.cpp index ce12ce9382..96d977d422 100644 --- a/sound/mods/module.cpp +++ b/sound/mods/module.cpp @@ -177,7 +177,7 @@ bool Module::load(Common::SeekableReadStream &st, int offs) { // For modules that use common samples for (int j = 0; j < NUM_SAMPLES; ++j) { if (!scumm_stricmp((const char *)commonSamples[j].name, (const char *)sample[i].name)) { - sample[i].len = commonSamples[i].len; + sample[i].len = commonSamples[j].len; st.seek(commonSamples[j].offs); break; } |