aboutsummaryrefslogtreecommitdiff
path: root/common/config-manager.cpp
diff options
context:
space:
mode:
authordhewg2011-02-28 00:09:36 +0100
committerdhewg2011-03-02 23:18:34 +0100
commitb84b56b2481bac8ad92ffe6870b28b288011bf6a (patch)
tree861f56d84b4da38f8976f5c492b235418e032f89 /common/config-manager.cpp
parent2f008d0cd6ffa84071fe2f5c343ef19328cc83ae (diff)
downloadscummvm-rg350-b84b56b2481bac8ad92ffe6870b28b288011bf6a.tar.gz
scummvm-rg350-b84b56b2481bac8ad92ffe6870b28b288011bf6a.tar.bz2
scummvm-rg350-b84b56b2481bac8ad92ffe6870b28b288011bf6a.zip
COMMON: Remove newlines from debug()
They were interfering with my precious debug spew :P
Diffstat (limited to 'common/config-manager.cpp')
-rw-r--r--common/config-manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp
index 0561f390a4..c8c0999a25 100644
--- a/common/config-manager.cpp
+++ b/common/config-manager.cpp
@@ -103,9 +103,9 @@ void ConfigManager::loadConfigFile(const String &filename) {
FSNode node(filename);
File cfg_file;
if (!cfg_file.open(node)) {
- debug("Creating configuration file: %s\n", filename.c_str());
+ debug("Creating configuration file: %s", filename.c_str());
} else {
- debug("Using configuration file: %s\n", _filename.c_str());
+ debug("Using configuration file: %s", _filename.c_str());
loadFromStream(cfg_file);
}
}