From 81275ea4e359ef67c7cf40a9dbcebac6ec2fd8ea Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Wed, 29 Jan 2025 05:19:37 -0500 Subject: [PATCH] Fix issue where you can't type the initial command --- 01_text_adventure/game.c | 1 + 1 file changed, 1 insertion(+) diff --git a/01_text_adventure/game.c b/01_text_adventure/game.c index 5189970..8a5663d 100644 --- a/01_text_adventure/game.c +++ b/01_text_adventure/game.c @@ -30,6 +30,7 @@ Game *game_create(void) { Vector2 input_position = { 20, 400 }; Input *input = create_input(input_position); input->log = log; + input->input_length = 0; log->input = input; input->g = g; input->command = '>'; // Don't change this