From 09fb43f3d36847977ac202c10c5a11f34af03a43 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 4 Feb 2008 01:17:44 +0000 Subject: astyle --- src/filesystem/filesystem.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/filesystem/filesystem.cc') diff --git a/src/filesystem/filesystem.cc b/src/filesystem/filesystem.cc index 5d3ed40..da80ea5 100644 --- a/src/filesystem/filesystem.cc +++ b/src/filesystem/filesystem.cc @@ -13,13 +13,14 @@ std::string filesystem::homedir = ""; std::string filesystem::basedir = ""; std::string filesystem::moddir = ""; -void filesystem::init() { +void filesystem::init() +{ con_print << "Initializing filesystem..." << std::endl; // FIXME datadir should by set by ./configure and read from config.h // initialize game data locations - datadir = "./data/"; + datadir = "./data/"; basedir = "base/"; moddir = ""; @@ -28,11 +29,12 @@ void filesystem::init() { homedir = homedir + "/.osirion/"; Path::create(homedir); Path::create(homedir+basedir); - if (moddir.size() && !Path::exists(homedir+moddir)) + if (moddir.size() && !Path::exists(homedir+moddir)) Path::create(homedir+moddir); } -void filesystem::shutdown() { +void filesystem::shutdown() +{ con_print << "Shutting down filesystem..." << std::endl; } -- cgit v1.2.3