From 5e1acc10ad73380a77cda0c4b3657439c7bd461a Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Fri, 26 Jul 2024 17:55:14 +1000 Subject: [PATCH] Delete src/rotate_column.c --- src/rotate_column.c | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/rotate_column.c diff --git a/src/rotate_column.c b/src/rotate_column.c deleted file mode 100644 index fb041d7..0000000 --- a/src/rotate_column.c +++ /dev/null @@ -1,10 +0,0 @@ -// rotate tiles in brick by 1 -int rotate_col (void) -{ - int temp; - temp = tile_current[0]; - tile_current[0] = tile_current[1]; - tile_current[1] = tile_current[2]; - tile_current[2] = temp; - return 0; -}