From 1b9703960928ef9a50e2a81ee6194eed6b77cf45 Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:12:34 +1000 Subject: [PATCH] Update game.h --- src/game.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/game.h b/src/game.h index 4bcac84..89abd9e 100644 --- a/src/game.h +++ b/src/game.h @@ -104,7 +104,7 @@ int tile_shp, tilesrc_x, tilesrc_y, tiledst_x, tiledst_y; int display_tile(); -int grid [2][18][8]= { +int grid [2][18][8] = { { {0, 0, 0, 0, 0, 0, 0, 0}, // colours {0, 0, 0, 0, 0, 0, 0, 0}, @@ -156,8 +156,8 @@ int spr_x[5][6] = { {288, 300, 312, 324, 336, 348}, // ball 2 }; -int mask[2] = {360, 372}; -int spr_y[6] = {0, 11, 22, 33, 44, 55}; +int mask[2] = {360, 372}; +int spr_y[6] = {0, 11, 22, 33, 44, 55}; /******************** * tile colours * @@ -169,5 +169,5 @@ int spr_y[6] = {0, 11, 22, 33, 44, 55}; * orange = 5 * * cyan = 6 * * ******************/ -int tile_current[3] = {0}; -int tile_next[3] = {0}; +int tile_current[3] = {0}; +int tile_next[3] = {0};