Skip to content

Commit

Permalink
Added verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 23, 2003
1 parent 24b4389 commit 8cbbff0
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions doomsday/Src/con_config.c
Expand Up @@ -49,10 +49,8 @@ int Con_ParseCommands(char *fileName, int setdefault)
// Open the file.
if((file = F_Open(fileName, "rt")) == NULL) return false;

#ifdef _DEBUG
Con_Printf("Con_ParseCommands: %s (def:%i)\n", fileName, setdefault);
#endif

VERBOSE( Con_Printf("Con_ParseCommands: %s (def:%i)\n", fileName,
setdefault) );

// This file is filled with console commands.
// Each line is a command.
Expand Down Expand Up @@ -86,9 +84,7 @@ boolean Con_WriteState(const char *fileName)
cvar_t *var;
FILE *file;

#ifdef _DEBUG
Con_Printf("Con_WriteState: %s\n", fileName);
#endif
VERBOSE( Con_Printf("Con_WriteState: %s\n", fileName) );

if((file = fopen(fileName, "wt")) == NULL)
{
Expand Down

0 comments on commit 8cbbff0

Please sign in to comment.