Fix Pas2C failing to include SysUtils
authorWuzzy <Wuzzy2@mail.ru>
Tue, 30 Apr 2019 17:00:23 +0200
changeset 14860 259840ca77e3
parent 14859 8d65728c4ed0
child 14861 acb0526bf458
Fix Pas2C failing to include SysUtils
hedgewars/hwengine.pas
hedgewars/uGears.pas
hedgewars/uPhysFSLayer.pas
--- a/hedgewars/hwengine.pas	Tue Apr 30 09:36:13 2019 -0400
+++ b/hedgewars/hwengine.pas	Tue Apr 30 17:00:23 2019 +0200
@@ -663,7 +663,7 @@
     init(argc, argv);
 {$ENDIF}
 {$IFNDEF PAS2C}
-    // Custom procedure for unhandled exceptions; ExceptProc is used by sysutils module
+    // Custom procedure for unhandled exceptions; ExceptProc is used by SysUtils module
     ExceptProc:= @catchUnhandledException;
 {$ENDIF}
 
--- a/hedgewars/uGears.pas	Tue Apr 30 09:36:13 2019 -0400
+++ b/hedgewars/uGears.pas	Tue Apr 30 17:00:23 2019 +0200
@@ -52,7 +52,7 @@
 function  IsClockRunning() : boolean;
 
 implementation
-uses sysutils, uStore, uSound, uTeams, uRandom, uIO, uLandGraphics,
+uses SysUtils, uStore, uSound, uTeams, uRandom, uIO, uLandGraphics,
     {$IFDEF USE_TOUCH_INTERFACE}uTouch,{$ENDIF}
     uLocale, uAmmos, uStats, uVisualGears, uScript, uVariables,
     uCommands, uUtils, uTextures, uRenderUtils, uGearsRender, uCaptions,
--- a/hedgewars/uPhysFSLayer.pas	Tue Apr 30 09:36:13 2019 -0400
+++ b/hedgewars/uPhysFSLayer.pas	Tue Apr 30 17:00:23 2019 +0200
@@ -46,7 +46,7 @@
 procedure hedgewarsMountPackage(filename: PChar); cdecl; external PhyslayerLibName;
 
 implementation
-uses uConsts, uUtils, uVariables{$IFNDEF PAS2C}{$IFDEF HWLIBRARY}, sysutils{$ENDIF}{$ELSE}, physfs{$ENDIF};
+uses uConsts, uUtils, uVariables{$IFNDEF PAS2C}{$IFDEF HWLIBRARY}, SysUtils{$ENDIF}{$ELSE}, physfs{$ENDIF};
 
 function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
 function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;