# HG changeset patch # User unc0rr # Date 1336765002 -14400 # Node ID a0326412e96ada6b7a5ca4a34ef7ae3b798d266b # Parent 7efe165757799d5c306025cb7fb5ae7448f20296 sysutils -> SysUtils diff -r 7efe16575779 -r a0326412e96a hedgewars/uLand.pas --- a/hedgewars/uLand.pas Fri May 11 23:34:35 2012 +0400 +++ b/hedgewars/uLand.pas Fri May 11 23:36:42 2012 +0400 @@ -29,7 +29,7 @@ procedure GenPreview(var Preview: TPreview); implementation -uses uConsole, uStore, uRandom, uLandObjects, uIO, uLandTexture, sysutils, +uses uConsole, uStore, uRandom, uLandObjects, uIO, uLandTexture, SysUtils, uVariables, uUtils, uCommands, adler32, uDebug, uLandPainted, uTextures, uLandGenMaze, uLandOutline; diff -r 7efe16575779 -r a0326412e96a hedgewars/uLandObjects.pas --- a/hedgewars/uLandObjects.pas Fri May 11 23:34:35 2012 +0400 +++ b/hedgewars/uLandObjects.pas Fri May 11 23:36:42 2012 +0400 @@ -31,7 +31,7 @@ implementation uses uStore, uConsts, uConsole, uRandom, uSound, GLunit, - uTypes, uVariables, uUtils, uDebug, sysutils; + uTypes, uVariables, uUtils, uDebug, SysUtils; const MaxRects = 512; MAXOBJECTRECTS = 16; diff -r 7efe16575779 -r a0326412e96a hedgewars/uRenderUtils.pas --- a/hedgewars/uRenderUtils.pas Fri May 11 23:34:35 2012 +0400 +++ b/hedgewars/uRenderUtils.pas Fri May 11 23:36:42 2012 +0400 @@ -39,7 +39,7 @@ function RenderSpeechBubbleTex(s: ansistring; SpeechType: Longword; font: THWFont): PTexture; implementation -uses uUtils, uVariables, uConsts, uTextures, sysutils, uDebug; +uses uUtils, uVariables, uConsts, uTextures, SysUtils, uDebug; procedure DrawRoundRect(rect: PSDL_Rect; BorderColor, FillColor: Longword; Surface: PSDL_Surface; Clear: boolean); var r: TSDL_Rect; diff -r 7efe16575779 -r a0326412e96a hedgewars/uScript.pas --- a/hedgewars/uScript.pas Fri May 11 23:34:35 2012 +0400 +++ b/hedgewars/uScript.pas Fri May 11 23:36:42 2012 +0400 @@ -80,7 +80,7 @@ uTextures, uLandGraphics, SDLh, - sysutils; + SysUtils; var luaState : Plua_State; ScriptAmmoLoadout : shortstring; diff -r 7efe16575779 -r a0326412e96a hedgewars/uTouch.pas --- a/hedgewars/uTouch.pas Fri May 11 23:34:35 2012 +0400 +++ b/hedgewars/uTouch.pas Fri May 11 23:36:42 2012 +0400 @@ -22,7 +22,7 @@ interface -uses sysutils, uConsole, uVariables, SDLh, uFloat, uConsts, uCommands, uIO, GLUnit, uTypes, uCaptions, uAmmos, uWorld; +uses SysUtils, uConsole, uVariables, SDLh, uFloat, uConsts, uCommands, uIO, GLUnit, uTypes, uCaptions, uAmmos, uWorld; procedure initModule;