]> git.localhorst.tv Git - blank.git/blobdiff - src/io/WorldSave.cpp
fix some inline TODOs
[blank.git] / src / io / WorldSave.cpp
index d90bce1654c4c5b0e1745043e328e8746d3e92c2..a08d69c3c288784ac312b84c32cdb461c209baa4 100644 (file)
@@ -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");
        }