Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-03-25 18:51:27 +0000
committerStijn Buys <ingar@osirion.org>2008-03-25 18:51:27 +0000
commita29aa1ee2935857f616351a23578311f514516d4 (patch)
tree5d9f241b0bb1facc6dc31a4ae4e26a4182641c3b /src/filesystem
parentf2c7b3846468461d3d88a797b4cc006ee4d3b624 (diff)
screenshots
Diffstat (limited to 'src/filesystem')
-rw-r--r--src/filesystem/diskfile.cc2
-rw-r--r--src/filesystem/inifile.cc1
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;
}