From 077af74e5ce1fa9850c69ec84ee63442f29b4908 Mon Sep 17 00:00:00 2001 From: Quinn <99677023+thepigeongenerator@users.noreply.github.com> Date: Wed, 14 Aug 2024 15:38:35 +0200 Subject: [PATCH] fix incorrect flag --- src/level.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/level.c b/src/level.c index 7327a84..a716d34 100644 --- a/src/level.c +++ b/src/level.c @@ -24,11 +24,11 @@ void level_init(Level* level) { // initialize bricks // define the colours of the brick rows const Colour colours[BRICK_COLUMNS] = { - {0x3DA542FF}, - {0xA6D378FF}, + {0x5BCEFAFF}, + {0xF5A9B8FF}, {0xFFFFFFFF}, - {0xA8A8A8FF}, - {0x202020FF} + {0xF5A9B8FF}, + {0x5BCEFAFF} }; int brick_width = BRICK_WIDTH + BRICK_PADDING;