aboutsummaryrefslogtreecommitdiff
path: root/sword1
diff options
context:
space:
mode:
authorOliver Kiehl2003-12-17 09:17:59 +0000
committerOliver Kiehl2003-12-17 09:17:59 +0000
commitf926ae108cd0816487eceac3c253149897a525cb (patch)
tree854f775c56c88027280ee63ff80feea617437c27 /sword1
parent7f03b140d465b1d5bff351fe1d955f9e402ce679 (diff)
downloadscummvm-rg350-f926ae108cd0816487eceac3c253149897a525cb.tar.gz
scummvm-rg350-f926ae108cd0816487eceac3c253149897a525cb.tar.bz2
scummvm-rg350-f926ae108cd0816487eceac3c253149897a525cb.zip
enable music
svn-id: r11706
Diffstat (limited to 'sword1')
-rw-r--r--sword1/music.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword1/music.cpp b/sword1/music.cpp
index ca449d9cd8..155c9ac02f 100644
--- a/sword1/music.cpp
+++ b/sword1/music.cpp
@@ -106,7 +106,7 @@ void SwordMusic::startMusic(int32 tuneId, int32 loopFlag) {
if (_musicFile.isOpen())
_musicFile.close();
char fName[20];
- sprintf(fName, "MUSIC\\%s.wav", _tuneList[tuneId]);
+ sprintf(fName, "music/%s.wav", _tuneList[tuneId]);
_musicFile.open(fName);
if (_musicFile.isOpen()) {
_musicFile.seek(0x28);