hedgewars/uSound.pas
changeset 449 9f4063306e54
parent 393 db01cc79f278
child 564 17fb45c670c1
--- a/hedgewars/uSound.pas	Sun Feb 18 12:20:36 2007 +0000
+++ b/hedgewars/uSound.pas	Sun Feb 18 12:52:39 2007 +0000
@@ -76,8 +76,8 @@
     end;
 
 s:= PathPrefix + '/Music/kahvi140a_alexander_chereshnev-illusion.ogg';
-WriteToConsole(msgLoading + string(s) + ' ');
-Mus:= Mix_LoadMUS(@s);
+WriteToConsole(msgLoading + s + ' ');
+Mus:= Mix_LoadMUS(Str2PChar(s));
 TryDo(Mus <> nil, msgFailed, false);
 WriteLnToConsole(msgOK)
 end;