aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/main.cpp')
-rw-r--r--frontend/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/main.cpp b/frontend/main.cpp
index deacdc5..366473d 100644
--- a/frontend/main.cpp
+++ b/frontend/main.cpp
@@ -37,8 +37,7 @@ FollowupAction game_main() {
while (1) {
string line = rl();
if (line.length() == 0) continue;
- vector<string> argv = str_split(line, " ");
- FollowupAction action = player.cmd(argv);
+ FollowupAction action = player.cmd(line);
switch (action) {
case NONE: break;