hedgewars/uPhysFSLayer.pas
changeset 9466 8b48c27201af
parent 9407 860f959f92c9
child 9521 8054d9d775fd
child 9531 7fcdedc45589
--- 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;