diff options
Diffstat (limited to 'sound/mods/module.cpp')
-rw-r--r-- | sound/mods/module.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/mods/module.cpp b/sound/mods/module.cpp index 96d977d422..90921d24d1 100644 --- a/sound/mods/module.cpp +++ b/sound/mods/module.cpp @@ -23,8 +23,6 @@ * */ -#include "common/stdafx.h" - #include "sound/mods/module.h" #include "common/util.h" @@ -173,7 +171,7 @@ bool Module::load(Common::SeekableReadStream &st, int offs) { if (!sample[i].len) { sample[i].data = 0; } else { - if (offs != 0) { + if (offs != 0) { // 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)) { |