Back to shtanton's homepage
summaryrefslogtreecommitdiff
path: root/src/tick.c
diff options
context:
space:
mode:
authorCharlie Stanton <charlie@shtanton.xyz>2025-04-07 18:53:49 +0100
committerCharlie Stanton <charlie@shtanton.xyz>2025-04-07 18:53:49 +0100
commitd0863cbc9e6276776eecfbdab3f95e3bf33cfeef (patch)
tree0a542b8f4d6cfc31954b61d1fee818c0599a3fbc /src/tick.c
parentbd31dd79eb31b76f3d7276be8dfaff21f615b1da (diff)
downloadldjam57-d0863cbc9e6276776eecfbdab3f95e3bf33cfeef.tar
polishHEADmain
Diffstat (limited to 'src/tick.c')
-rw-r--r--src/tick.c2
1 files changed, 1 insertions, 1 deletions
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;
}