# HG changeset patch # User sheepluva # Date 1391517432 -3600 # Node ID 781f0c19e59bf6736b363f1e327f759d89fcd1f0 # Parent ac3ec9c11c97dc1d01203978c4d7316ba8f1d84a use uConsts rather than including config.inc more than once diff -r ac3ec9c11c97 -r 781f0c19e59b hedgewars/uPhysFSLayer.pas --- a/hedgewars/uPhysFSLayer.pas Tue Feb 04 12:37:26 2014 +0100 +++ b/hedgewars/uPhysFSLayer.pas Tue Feb 04 13:37:12 2014 +0100 @@ -3,8 +3,6 @@ interface uses SDLh, LuaPas; -{$INCLUDE "config.inc"} - const PhysfsLibName = {$IFDEF PHYSFS_INTERNAL}'libhwphysfs'{$ELSE}'libphysfs'{$ENDIF}; const PhyslayerLibName = 'libphyslayer'; @@ -38,7 +36,7 @@ {$ENDIF} implementation -uses uUtils, uVariables, sysutils; +uses uConsts, uUtils, uVariables, sysutils; {$IFNDEF PAS2C} function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external PhysfsLibName;