hedgewars/uPhysFSLayer.pas
changeset 11644 f17df78181d8
parent 11643 3bff941c035f
child 11683 17d102f9515d
--- a/hedgewars/uPhysFSLayer.pas	Sat Apr 02 10:45:33 2016 +0300
+++ b/hedgewars/uPhysFSLayer.pas	Sat Apr 02 23:32:57 2016 +0300
@@ -181,10 +181,7 @@
 
 procedure pfsMount(path: PChar; mountpoint: PChar);
 begin
-    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()) + '")');
+    PHYSFS_mount(path, mountpoint, false)
 end;
 
 procedure pfsMountAtRoot(path: PChar);
@@ -207,7 +204,7 @@
 {$ENDIF}
 
     i:= PHYSFS_init(Str2PChar(cPhysfsId));
-    AddFileLog('[PhysFS] init: ' + inttostr(i));
+    //AddFileLog('[PhysFS] init: ' + inttostr(i));
 
 {$IFNDEF MOBILE}
     // mount system fonts paths first