aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UCommandLine.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-17 11:16:51 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-17 11:16:51 +0000
commitb88a17a87b2ccae7788ecce964bbb8d1b0e877da (patch)
treee7c84889f95d911f25eaaa74d0b6869c077466a5 /Game/Code/Classes/UCommandLine.pas
parentb2910a8978a45fc34fdacf71bffcb9ffbad9cd24 (diff)
downloadusdx-b88a17a87b2ccae7788ecce964bbb8d1b0e877da.tar.gz
usdx-b88a17a87b2ccae7788ecce964bbb8d1b0e877da.tar.xz
usdx-b88a17a87b2ccae7788ecce964bbb8d1b0e877da.zip
lazarus (was it lazarus?) complained about missing parameters for halt. after removing the bracket it knew it should use the parameter-less version of halt.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@707 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Classes/UCommandLine.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/UCommandLine.pas b/Game/Code/Classes/UCommandLine.pas
index 6a5a4808..e99ee37a 100644
--- a/Game/Code/Classes/UCommandLine.pas
+++ b/Game/Code/Classes/UCommandLine.pas
@@ -96,7 +96,7 @@ begin
writeln( ' '+s( cMediaInterfaces ) + ' : Show in-use media interfaces' );
writeln( '' );
- halt();
+ halt;
end;
//-------------