diff -r ae2950c5465c -r 0e27949850e3 hedgewars/uSound.pas --- 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);