# HG changeset patch # User sheepluva # Date 1463311114 -7200 # Node ID d8844d4c67de8d6f6965e138c9ce9308cb2edfde # Parent fe339879cf7594c4d1c063ce6263300422603a5e always include uUtils _after_ SysUtils diff -r fe339879cf75 -r d8844d4c67de hedgewars/LuaPas.pas --- a/hedgewars/LuaPas.pas Sun May 15 11:37:07 2016 +0200 +++ b/hedgewars/LuaPas.pas Sun May 15 13:18:34 2016 +0200 @@ -805,7 +805,7 @@ implementation uses - SysUtils; + SysUtils, uUtils; (*****************************************************************************) (* luaconfig.h *) diff -r fe339879cf75 -r d8844d4c67de hedgewars/uLandObjects.pas --- a/hedgewars/uLandObjects.pas Sun May 15 11:37:07 2016 +0200 +++ b/hedgewars/uLandObjects.pas Sun May 15 13:18:34 2016 +0200 @@ -34,7 +34,7 @@ implementation uses uStore, uConsts, uConsole, uRandom, uSound - , uTypes, uVariables, uUtils, uDebug, SysUtils + , uTypes, uVariables, uDebug, SysUtils, uUtils , uPhysFSLayer; const MaxRects = 512; diff -r fe339879cf75 -r d8844d4c67de hedgewars/uRenderUtils.pas --- a/hedgewars/uRenderUtils.pas Sun May 15 11:37:07 2016 +0200 +++ b/hedgewars/uRenderUtils.pas Sun May 15 13:18:34 2016 +0200 @@ -39,7 +39,7 @@ function RenderSpeechBubbleTex(s: ansistring; SpeechType: Longword; font: THWFont): PTexture; implementation -uses uUtils, uVariables, uConsts, uTextures, SysUtils, uDebug; +uses uVariables, uConsts, uTextures, SysUtils, uUtils, uDebug; procedure DrawRoundRect(rect: PSDL_Rect; BorderColor, FillColor: Longword; Surface: PSDL_Surface; Clear: boolean); var r: TSDL_Rect; diff -r fe339879cf75 -r d8844d4c67de hedgewars/uScript.pas --- a/hedgewars/uScript.pas Sun May 15 11:37:07 2016 +0200 +++ b/hedgewars/uScript.pas Sun May 15 13:18:34 2016 +0200 @@ -75,7 +75,6 @@ uTypes, uVariables, uCommands, - uUtils, uCaptions, uDebug, uCollisions, @@ -83,6 +82,7 @@ uTextures, uLandGraphics, SysUtils, + uUtils, uIO, uVisualGearsList, uGearsHandlersMess, diff -r fe339879cf75 -r d8844d4c67de hedgewars/uTouch.pas --- a/hedgewars/uTouch.pas Sun May 15 11:37:07 2016 +0200 +++ b/hedgewars/uTouch.pas Sun May 15 13:18:34 2016 +0200 @@ -22,7 +22,7 @@ interface -uses SysUtils, uConsole, uVariables, SDLh, uFloat, uConsts, uCommands, GLUnit, uTypes, uCaptions, uAmmos, uWorld; +uses SysUtils, uUtils, uConsole, uVariables, SDLh, uFloat, uConsts, uCommands, GLUnit, uTypes, uCaptions, uAmmos, uWorld; procedure initModule; diff -r fe339879cf75 -r d8844d4c67de hedgewars/uVideoRec.pas --- a/hedgewars/uVideoRec.pas Sun May 15 11:37:07 2016 +0200 +++ b/hedgewars/uVideoRec.pas Sun May 15 13:18:34 2016 +0200 @@ -48,7 +48,7 @@ procedure freeModule; implementation -uses uVariables, uUtils, GLunit, SDLh, SysUtils, uIO, uMisc, uTypes, uDebug; +uses uVariables, GLunit, SDLh, SysUtils, uUtils, uIO, uMisc, uTypes, uDebug; type TAddFileLogRaw = procedure (s: pchar); cdecl; const AvwrapperLibName = 'libavwrapper';