rename Colour8 to colour8

This commit is contained in:
2025-02-10 11:58:00 +01:00
parent 94ff2d200a
commit 94ca7e3d08
7 changed files with 20 additions and 20 deletions

View File

@@ -48,7 +48,7 @@ void game_init(GameData* const game_data) {
// allocate size for each row
for (int8_t i = 0; i < ROWS; i++) {
game_data->rows[i] = calloc(COLUMNS, sizeof(Colour8));
game_data->rows[i] = calloc(COLUMNS, sizeof(colour8));
// game_data->rows[i][0] = (colour8){(uint8_t)((((i + 1) ^ ((i + 1) >> 3)) * 0x27) & 0xFF)}; // for debugging rows
}