From 89fe33daec9bde09702c12dca1391a801b6265a3 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sun, 14 Apr 2013 18:33:25 +0200 Subject: when using the condump command, do not say "dumped console text" prematurely, before trying to open the file --- src/client/cl_console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/cl_console.c b/src/client/cl_console.c index 3a3b1cfb..09e0429f 100644 --- a/src/client/cl_console.c +++ b/src/client/cl_console.c @@ -127,8 +127,6 @@ void Con_Dump_f (void) Q_strncpyz( filename, Cmd_Argv( 1 ), sizeof( filename ) ); COM_DefaultExtension( filename, sizeof( filename ), ".txt" ); - Com_Printf ("Dumped console text to %s.\n", filename ); - f = FS_FOpenFileWrite( filename ); if (!f) { @@ -136,6 +134,8 @@ void Con_Dump_f (void) return; } + Com_Printf ("Dumped console text to %s.\n", filename ); + // skip empty lines for (l = con.current - con.totallines + 1 ; l <= con.current ; l++) { -- cgit