--- a/hedgewars/uPhysFSLayer.pas Sat Sep 21 23:54:57 2013 +0400
+++ b/hedgewars/uPhysFSLayer.pas Fri Sep 27 00:54:18 2013 +0400
@@ -143,10 +143,8 @@
i:= PHYSFS_mount(Str2PChar(PathPrefix), nil, false);
AddFileLog('[PhysFS] mount ' + PathPrefix + ': ' + inttostr(i));
- i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/Data'), nil, false);
- AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/Data: ' + inttostr(i));
- i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/Teams'), '/Teams', false);
- AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/Teams: ' + inttostr(i));
+ i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/'), '/', false);
+ AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/: ' + inttostr(i));
hedgewarsMountPackages;
end;