From eecd0f0445f587dfdaee21dd387c00921e8778b4 Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:59:42 +1000 Subject: [PATCH] Update column.c --- src/column.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/column.c b/src/column.c index 5b93cc2..4a2b0d2 100644 --- a/src/column.c +++ b/src/column.c @@ -188,6 +188,10 @@ int reset(void) { // reset row/column row = -1; - col = 0; // col = new_column(); + next_brick(); + initial_brick(); + col = new_column(); + + game_end = 0; // reset game end status return 0; }