summaryrefslogtreecommitdiff
path: root/src/shape_maps.c
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2017-06-20 21:48:38 +0700
committerOxore <oxore@protonmail.com>2017-06-20 21:48:38 +0700
commit52841e735953c642588a33830f0bb4245d08d28e (patch)
tree6d6864ab7d5370b38ade57a7ac7921858a9c349a /src/shape_maps.c
parentcd2650182ce710ae7fdfae2c68b91c417d54bc60 (diff)
Refactoring 3
Diffstat (limited to 'src/shape_maps.c')
-rw-r--r--src/shape_maps.c14
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},