summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/m_config.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/m_config.c b/src/m_config.c
index e66e28e7..3ebc3812 100644
--- a/src/m_config.c
+++ b/src/m_config.c
@@ -1704,7 +1704,10 @@ void M_SetConfigDir(char *dir)
configdir = GetDefaultConfigDir();
}
- printf("Using %s for configuration and saves\n", configdir);
+ if (strcmp(configdir, "") != 0)
+ {
+ printf("Using %s for configuration and saves\n", configdir);
+ }
// Make the directory if it doesn't already exist: