X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fio%2FWorldSave.cpp;h=bd041f2e89cf20aba12487b1db2352ea010ebfac;hb=9ebe2c320fd9f94266ab93fa2f9d9908a0a284d3;hp=d90bce1654c4c5b0e1745043e328e8746d3e92c2;hpb=ede25c0a2f59e21521d1cd962e6ea9d78169ca12;p=blank.git diff --git a/src/io/WorldSave.cpp b/src/io/WorldSave.cpp index d90bce1..bd041f2 100644 --- a/src/io/WorldSave.cpp +++ b/src/io/WorldSave.cpp @@ -3,6 +3,7 @@ #include "filesystem.hpp" #include +#include #include #include #include @@ -30,8 +31,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 +70,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"); }