aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/ULog.pas
diff options
context:
space:
mode:
Diffstat (limited to 'Game/Code/Classes/ULog.pas')
-rw-r--r--Game/Code/Classes/ULog.pas10
1 files changed, 3 insertions, 7 deletions
diff --git a/Game/Code/Classes/ULog.pas b/Game/Code/Classes/ULog.pas
index 7e464b57..2ce70a11 100644
--- a/Game/Code/Classes/ULog.pas
+++ b/Game/Code/Classes/ULog.pas
@@ -4,10 +4,6 @@ interface
{$I switches.inc}
-{$IFDEF FPC}
- {$MODE Delphi}
-{$ENDIF}
-
uses Classes;
type
@@ -191,7 +187,7 @@ begin
{$DEFINE DEBUG} //How can i check if this is set in *.dpr file o0
//If Debug => Write to Console Output
{$IFDEF DEBUG}
- WriteLn('Error: ' + Text);
+ WriteLn('Error: ' + Text);
{$ENDIF}
end;
@@ -229,7 +225,7 @@ begin
//If Debug => Write to Console Output
{$IFDEF DEBUG}
- WriteLn(Log2 + ': ' + Log1);
+ WriteLn(Log2 + ': ' + Log1);
{$ENDIF}
end;
@@ -243,7 +239,7 @@ begin
//Write Error to Logfile:
LogError (Text);
- {$IFDEF win32}
+ {$IFDEF MSWINDOWS}
//Show Errormessage
Messagebox(0, PChar(Text), PChar(Title), MB_ICONERROR or MB_OK);
{$ELSE}