--- 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;
--- 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;
--- 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;
--- 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;
--- 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;