diff options
Diffstat (limited to 'src/tick.c')
-rw-r--r-- | src/tick.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |