aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-02-15 16:57:14 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-02-15 16:57:14 -0500
commitbd80053588a9a38c9f7a1f132d36fb0844b91af4 (patch)
treea5d0710ed06d486ff6459b809e5f22025067cab0 /main.cpp
parent4a5d0a99f7c83c9f254cbfb8f41828831f8251db (diff)
reset flag redo
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 34d3367..e0bb5d2 100644
--- a/main.cpp
+++ b/main.cpp
@@ -27,7 +27,7 @@ using namespace std::literals::chrono_literals;
/**
* The currently used folder to look for XML files in.
*/
-std::string xmlFolder = "xml/";
+std::string xmlFolder = "./xml/";
/**
* The current center of the screen, updated in main render.
@@ -80,6 +80,16 @@ int main(int argc, char *argv[])
// kill the world if needed
if (worldReset) {
+ for (const auto& s : xmlFiles) {
+ if (s.find(".dat", s.size() - 4) != std::string::npos) {
+ std::string re = xmlFolder;
+ re.append(s);
+ auto r = re.c_str();
+ std::cout << "Removing " << r << "...\n";
+ std::remove(r);
+ }
+ }
+
// TODO TODO TODO we do xml/*.dat now... kill that
game::briceClear();
}