diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-30 01:29:58 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-30 01:29:58 +0100 |
commit | b9e738502260b8f448289c9888203971c7749c76 (patch) | |
tree | 09477251ba49307173a112e0cd5dbdd3633346ce /frontend/main.cpp | |
parent | e4261302944303781c952943e3290c99e2cabc52 (diff) |
WIP SQL gedoe
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) { |