diff -r 3bff941c035f -r f17df78181d8 hedgewars/uPhysFSLayer.pas --- 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