--- a/hedgewars/uPhysFSLayer.pas Fri Apr 01 15:36:19 2016 +0200
+++ b/hedgewars/uPhysFSLayer.pas Sat Apr 02 10:45:33 2016 +0300
@@ -179,15 +179,15 @@
pfsBlockRead:= r
end;
-procedure pfsMount(path: ansistring; mountpoint: PChar);
+procedure pfsMount(path: PChar; mountpoint: PChar);
begin
- if PHYSFS_mount(PChar(path), mountpoint, false) then
- //AddFileLog('[PhysFS] mount ' + shortstring(path) + ' at ' + shortstring(mountpoint) + ' : ok')
+ if PHYSFS_mount(path, mountpoint, false) then
+ AddFileLog('[PhysFS] mount ' + shortstring(path) + ' at ' + shortstring(mountpoint) + ' : ok')
else
- //AddFileLog('[PhysFS] mount ' + shortstring(path) + ' at ' + shortstring(mountpoint) + ' : FAILED ("' + shortstring(PHYSFS_getLastError()) + '")');
+ AddFileLog('[PhysFS] mount ' + shortstring(path) + ' at ' + shortstring(mountpoint) + ' : FAILED ("' + shortstring(PHYSFS_getLastError()) + '")');
end;
-procedure pfsMountAtRoot(path: ansistring);
+procedure pfsMountAtRoot(path: PChar);
begin
pfsMount(path, PChar(_S'/'));
end;
@@ -215,7 +215,7 @@
begin
fp := cFontsPaths[i];
if fp <> nil then
- pfsMount(ansistring(fp), _P'/Fonts');
+ pfsMount(fp, _P'/Fonts');
end;
{$ENDIF}
@@ -223,7 +223,7 @@
pfsMount(userPrefix, PChar('/Config'));
pfsMakeDir('/Config/Data');
pfsMakeDir('/Config/Logs');
- pfsMountAtRoot(userPrefix + ansistring('/Data'));
+ pfsMountAtRoot(Str2PChar(shortstring(userPrefix) + '/Data'));
PHYSFS_setWriteDir(userPrefix);
hedgewarsMountPackages;
@@ -233,7 +233,7 @@
if cTestLua then
begin
- pfsMountAtRoot(ansistring(ExtractFileDir(cScriptName)));
+ pfsMountAtRoot(Str2PChar(ExtractFileDir(cScriptName)));
cScriptName := ExtractFileName(cScriptName);
end;
end;