changeset 53 | 0e27949850e3 |
parent 13 | 7a5db822fd3f |
child 70 | 82d93eeecebe |
--- a/hedgewars/uSound.pas Sun Jan 15 23:56:47 2006 +0000 +++ b/hedgewars/uSound.pas Thu Jan 19 21:12:20 2006 +0000 @@ -77,7 +77,7 @@ if not isSoundEnabled then exit; for i:= Low(TSound) to High(TSound) do begin - s:= Pathz[ptSounds] + Soundz[i].FileName; + s:= Pathz[ptSounds] + '/' + Soundz[i].FileName; WriteToConsole(msgLoading + s + ' '); Soundz[i].id:= Mix_LoadWAV_RW(SDL_RWFromFile(PChar(s), 'rb'), 1); TryDo(Soundz[i].id <> nil, msgFailed, true);