(svn r268) -Fix: console-command: script command now stops recording correctly

-Fix: network client should not stop sending ready packets anymore [client should not timeout without any reason]
This commit is contained in:
signde
2004-09-16 06:17:50 +00:00
parent cbcf002a91
commit 25b5a727e8
2 changed files with 3 additions and 5 deletions

View File

@@ -182,12 +182,11 @@ DEF_CONSOLE_CMD(ConReturn)
DEF_CONSOLE_CMD(ConScript)
{
extern FILE* _iconsole_output_file;
if (_iconsole_output_file!=NULL) {
if (argc<2) return NULL;
IConsolePrintF(_iconsole_color_default,"file output complete");
fclose(_iconsole_output_file);
} else {
if (argc<2) return NULL;
IConsolePrintF(_iconsole_color_default,"file output started to: %s",argv[1]);
_iconsole_output_file = fopen(argv[1],"ab");
if (_iconsole_output_file == NULL) IConsoleError("could not open file");