diff options
Diffstat (limited to 'src/shape_maps.c')
-rw-r--r-- | src/shape_maps.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/shape_maps.c b/src/shape_maps.c index c89420d..eaa4635 100644 --- a/src/shape_maps.c +++ b/src/shape_maps.c @@ -13,7 +13,7 @@ * .... .##. #... .#.. * .... .... .... .... */ -uint8_t arrShapeL_a1[4][4] = { +uint8_t arrShapeL[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {1, 1, 1, 0}, @@ -27,7 +27,7 @@ uint8_t arrShapeL_a1[4][4] = { * .... .... .... .... */ -uint8_t arrShapeRL_a1[4][4] = { +uint8_t arrShapeRL[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {1, 1, 1, 0}, @@ -40,7 +40,7 @@ uint8_t arrShapeRL_a1[4][4] = { * .... .#.. .##. #... * .... .... .... .... */ -uint8_t arrShapeZ_a1[4][4] = { +uint8_t arrShapeZ[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 1, 1, 0}, @@ -53,7 +53,7 @@ uint8_t arrShapeZ_a1[4][4] = { * .... ..#. ##.. .#.. * .... .... .... .... */ -uint8_t arrShapeS_a1[4][4] = { +uint8_t arrShapeS[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {1, 1, 0, 0}, @@ -67,7 +67,7 @@ uint8_t arrShapeS_a1[4][4] = { * .... .... .... .... * .... .... .... .... */ -uint8_t arrShapeB_a1[4][4] = { +uint8_t arrShapeB[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 1, 1, 0}, @@ -81,7 +81,7 @@ uint8_t arrShapeB_a1[4][4] = { * .#.. .... .#.. .... * .#.. .... .#.. .... */ -uint8_t arrShapeI_a1[4][4] = { +uint8_t arrShapeI[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {1, 1, 1, 1}, @@ -95,7 +95,7 @@ uint8_t arrShapeI_a1[4][4] = { * .... .#.. .#.. .#.. * .... .... .... .... */ -uint8_t arrShapeT_a1[4][4] = { +uint8_t arrShapeT[4][4] = { {0, 0, 0, 0}, {0, 0, 0, 0}, {1, 1, 1, 0}, |