--- a/hedgewars/uPhysFSLayer.pas Sun Oct 13 21:53:42 2013 +0400
+++ b/hedgewars/uPhysFSLayer.pas Sun Oct 13 22:31:51 2013 +0400
@@ -143,10 +143,14 @@
i:= PHYSFS_mount(Str2PChar(PathPrefix), nil, false);
AddFileLog('[PhysFS] mount ' + PathPrefix + ': ' + inttostr(i));
- i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/'), '/', false);
- AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/: ' + inttostr(i));
+ i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/Data'), nil, false);
+ AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/Data: ' + inttostr(i));
hedgewarsMountPackages;
+
+ i:= PHYSFS_mount(Str2PChar(UserPathPrefix), nil, false);
+ // need access to teams and frontend configs (for bindings)
+ AddFileLog('[PhysFS] mount ' + UserPathPrefix + ': ' + inttostr(i));
end;
procedure freeModule;