aboutsummaryrefslogtreecommitdiff
path: root/simon/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/sound.cpp')
-rw-r--r--simon/sound.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/simon/sound.cpp b/simon/sound.cpp
index be2eef7803..3c316396b5 100644
--- a/simon/sound.cpp
+++ b/simon/sound.cpp
@@ -94,9 +94,15 @@ void SimonSound::readSfxFile(const char *filename, const char *gameDataPath)
file->open(filename, gameDataPath);
if (file->isOpen() == false) {
- if (atoi(filename + 6) != 1 && atoi(filename + 6) != 30)
- warning("readSfxFile: Cannot load sfx file %s", filename);
- return;
+ char filename2[strlen(filename) + 1];
+ strcpy(filename2, filename);
+ strcat(filename2, ".");
+ file->open(filename2, gameDataPath);
+ if (file->isOpen() == false) {
+ if (atoi(filename + 6) != 1 && atoi(filename + 6) != 30)
+ warning("readSfxFile: Cannot load sfx file %s", filename);
+ return;
+ }
}
_effects = new WavSound(_mixer, file);