diff options
Diffstat (limited to 'frontend/main.cpp')
-rw-r--r-- | frontend/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/main.cpp b/frontend/main.cpp index a5514bd..deacdc5 100644 --- a/frontend/main.cpp +++ b/frontend/main.cpp @@ -16,7 +16,7 @@ using namespace std; static unique_ptr<Dungeon> make_dungeon() noexcept { while (1) { - print_string(strings::INTRO); + str_print(strings::INTRO); string filename = rl(); try { if (filename.size() == 0) { @@ -37,7 +37,7 @@ FollowupAction game_main() { while (1) { string line = rl(); if (line.length() == 0) continue; - vector<string> argv = split_string(line, " "); + vector<string> argv = str_split(line, " "); FollowupAction action = player.cmd(argv); switch (action) { |