aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/main.cpp')
-rw-r--r--frontend/main.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/main.cpp b/frontend/main.cpp
index 90cb1d2..2d66888 100644
--- a/frontend/main.cpp
+++ b/frontend/main.cpp
@@ -1,11 +1,12 @@
-#include <memory>
#include <cstdlib>
#include <cstdio>
+#include <memory>
#include "backend/Dungeon.h"
#include "cli.h"
#include "strings.h"
+#include "print.h"
using namespace std;
@@ -15,9 +16,9 @@ int main() {
print_string(strings::INTRO);
string filename = cli_readline();
if (filename.size() == 0) {
- printf("TODO: generate dungeon\n");
+ lprtf("TODO: generate dungeon\n");
} else {
- printf("TODO: load %s\n", filename.c_str());
+ lprtf("TODO: load %s\n", filename.c_str());
}
cli_main();