hedgewars/hwengine.pas
changeset 2691 c0da3a98c01c
parent 2690 8e83c7e31720
child 2692 ce9992075118
--- a/hedgewars/hwengine.pas	Sat Jan 09 01:34:23 2010 +0000
+++ b/hedgewars/hwengine.pas	Sun Jan 10 00:52:20 2010 +0000
@@ -236,6 +236,7 @@
 
 /////////////////////
 procedure DisplayUsage;
+var i: LongInt;
 begin
 	WriteLn('Wrong argument format: correct configurations is');
 	WriteLn();
@@ -249,6 +250,9 @@
 	WriteLn(' --set-everything [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen] [show FPS] [alternate damage] [timer value] [reduced quality]');
 	WriteLn();
 	WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information');
+	Write('parsed command: ');
+	for i:=0 to ParamCount do Write(ParamStr(i) + ' ');
+	WriteLn();
 	halt(1);
 end;