diff options
author | Stijn Buys <ingar@osirion.org> | 2008-05-12 18:32:15 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-05-12 18:32:15 +0000 |
commit | 5ceb4694a05ec68b5cfba18b0f25ba804be88a80 (patch) | |
tree | d1baddc086de4bb4fa04cf59d11516f4ecc89bf3 /src/filesystem | |
parent | e4f2faa8d5895ba30207c09c7886afb21a697d5f (diff) |
console colors
Diffstat (limited to 'src/filesystem')
-rw-r--r-- | src/filesystem/filesystem.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filesystem/filesystem.cc b/src/filesystem/filesystem.cc index e0b45a9..dd694ee 100644 --- a/src/filesystem/filesystem.cc +++ b/src/filesystem/filesystem.cc @@ -22,7 +22,7 @@ std::string writedir = ""; void init() { - con_print << "Initializing filesystem..." << std::endl; + con_print << "^BInitializing filesystem..." << std::endl; // initialize game data locations // FIXME datadir should by set by ./configure and read from config.h @@ -56,7 +56,7 @@ void init() void shutdown() { - con_print << "Shutting down filesystem..." << std::endl; + con_print << "^BShutting down filesystem..." << std::endl; } File *open(const char *filename) |