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-16 09:39:02 +0000
committerStijn Buys <ingar@osirion.org>2008-03-16 09:39:02 +0000
commitc186b58679c50b06966997d33d5e91a99c5621ea (patch)
treec666439f63f62825e2fff419728d4c026661f9ed /src/filesystem
parent11acb6ebad36c20de5f22fb5b7edbf11d8b29254 (diff)
fixes compilation on soliter, abort dedicated server on error
Diffstat (limited to 'src/filesystem')
-rw-r--r--src/filesystem/diskfile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filesystem/diskfile.cc b/src/filesystem/diskfile.cc
index 85f6ccc..8f84baf 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_warn << "Could not open " << filename << std::endl;
+ con_error << "Could not open " << filename << std::endl;
return false;
}