aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Hamm2002-02-27 22:53:01 +0000
committerVincent Hamm2002-02-27 22:53:01 +0000
commit4c12e5cf39e9f5c1e8ec8e082dee05662db67dd6 (patch)
treec549631f38a01ffc47b363a87f84c9cfe820700d
parent71a97abfc235656647235ccd76687d2fd0b2333d (diff)
downloadscummvm-rg350-4c12e5cf39e9f5c1e8ec8e082dee05662db67dd6.tar.gz
scummvm-rg350-4c12e5cf39e9f5c1e8ec8e082dee05662db67dd6.tar.bz2
scummvm-rg350-4c12e5cf39e9f5c1e8ec8e082dee05662db67dd6.zip
Fixed a little typo
svn-id: r3637
-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;