(svn r1887) Stylistic change of ConExec()
authortron
Fri, 18 Feb 2005 08:49:04 +0000
changeset 1383 c69740efce83
parent 1382 17a62e07dde8
child 1384 17fe20da74ef
(svn r1887) Stylistic change of ConExec()
console_cmds.c
--- a/console_cmds.c	Fri Feb 18 08:36:11 2005 +0000
+++ b/console_cmds.c	Fri Feb 18 08:49:04 2005 +0000
@@ -594,18 +594,15 @@
 DEF_CONSOLE_CMD(ConExec)
 {
 	char cmd[1024];
-	bool doerror;
 
-	if (argc<2) return NULL;
+	if (argc < 2) return NULL;
 
-	doerror = true;
 	_script_file = fopen(argv[1], "r");
 
 	if (_script_file == NULL) {
-		if (argc>2) if (atoi(argv[2])==0) doerror=false;
-		if (doerror) IConsoleError("script file not found");
+		if (argc <= 2 || atoi(argv[2]) != 0) IConsoleError("script file not found");
 		return NULL;
-		}
+	}
 
 	_script_running = true;