From b9e738502260b8f448289c9888203971c7749c76 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 30 Oct 2024 01:29:58 +0100 Subject: WIP SQL gedoe --- frontend/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/main.cpp') 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 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 argv = split_string(line, " "); + vector argv = str_split(line, " "); FollowupAction action = player.cmd(argv); switch (action) { -- cgit v1.2.3