aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound.cpp b/sound.cpp
index e9afac77a7..62f05e9f7d 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -379,7 +379,7 @@ void *Scumm::openSfxFile() {
sprintf(buf, "%s%s.sou", _gameDataPath, _exe_name);
file = fopen(buf, "rb");
if (!file) {
- sprintf(buf, "%smonster.sou", _gameDataPath, _exe_name);
+ sprintf(buf, "%smonster.sou", _gameDataPath);
file = fopen(buf, "rb");
}
return file;