diff options
Diffstat (limited to 'src/filesystem')
-rw-r--r-- | src/filesystem/diskfile.cc | 2 | ||||
-rw-r--r-- | src/filesystem/inifile.cc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/filesystem/diskfile.cc b/src/filesystem/diskfile.cc index 8f84baf..11070f2 100644 --- a/src/filesystem/diskfile.cc +++ b/src/filesystem/diskfile.cc @@ -67,7 +67,7 @@ bool DiskFile::open(const char *filename) if (diskfile_handle) return true; - con_error << "Could not open " << filename << std::endl; + //con_error << "Could not open " << filename << std::endl; return false; } diff --git a/src/filesystem/inifile.cc b/src/filesystem/inifile.cc index dcc0876..d9f2839 100644 --- a/src/filesystem/inifile.cc +++ b/src/filesystem/inifile.cc @@ -31,6 +31,7 @@ void IniFile::open(std::string const & name) { filesystem::File *f = filesystem::open(inifile_name.c_str()); if (!f) { + con_warn << "Could not open " << inifile_name << std::endl; return; } |