From d0863cbc9e6276776eecfbdab3f95e3bf33cfeef Mon Sep 17 00:00:00 2001 From: Charlie Stanton Date: Mon, 7 Apr 2025 18:53:49 +0100 Subject: polish --- src/tick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tick.c') diff --git a/src/tick.c b/src/tick.c index 21cf578..338017b 100644 --- a/src/tick.c +++ b/src/tick.c @@ -178,7 +178,7 @@ static void tick(Game *game, Arena a) { (y > 0 && lastState->grid[x + (y - 1) * GRIDWIDTH] == BLUE_DOWN) || (y < GRIDHEIGHT - 1 && lastState->grid[x + (y + 1) * GRIDWIDTH] == BLUE_UP) ) { - game->state.grid[x + y * GRIDWIDTH] = RED; + game->state.grid[x + y * GRIDWIDTH] = BLACK; // used to be RED } else { game->state.grid[x + y * GRIDWIDTH] = BLACK; } -- cgit v1.2.3