X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=src%2Fio%2FWorldSave.cpp;h=a08d69c3c288784ac312b84c32cdb461c209baa4;hb=f417749fb09718cde2faad77e8430cf175c68374;hp=d90bce1654c4c5b0e1745043e328e8746d3e92c2;hpb=82ec71079e4763f2b2d66c0c210e37df40c89034;p=blank.git diff --git a/src/io/WorldSave.cpp b/src/io/WorldSave.cpp index d90bce1..a08d69c 100644 --- a/src/io/WorldSave.cpp +++ b/src/io/WorldSave.cpp @@ -30,8 +30,6 @@ bool WorldSave::Exists() const noexcept { void WorldSave::Read(World::Config &conf) const { - cout << "reading world save" << endl; - ifstream in(conf_path); if (!in) { throw runtime_error("failed to open world config"); @@ -71,8 +69,6 @@ void WorldSave::Read(World::Config &conf) const { } void WorldSave::Write(const World::Config &conf) const { - cout << "writing world save" << endl; - if (!make_dirs(root_path)) { throw runtime_error("failed to create world save directory"); }