--- a/hedgewars/uMisc.pas Tue Jun 20 21:22:15 2006 +0000
+++ b/hedgewars/uMisc.pas Fri Jun 23 20:02:41 2006 +0000
@@ -64,7 +64,6 @@
cSkyColor : Cardinal = 0;
cWaterColor : Cardinal = $005ACE;
- cMapBackColor : Cardinal = $FFFFFF;
cWhiteColor : Cardinal = $FFFFFF;
cConsoleSplitterColor : Cardinal = $FF0000;
cColorNearBlack : Cardinal = 16;
@@ -149,7 +148,7 @@
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean);
begin
-if not Assert then OutError(msg, isFatal)
+if not Assert then OutError(Msg, isFatal)
end;
procedure SDLTry(Assert: boolean; isFatal: boolean);