diff options
author | Oxore <oxore@protonmail.com> | 2017-06-23 01:57:44 +0700 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2017-06-23 01:57:44 +0700 |
commit | 5da375c829d2bc5afdfd98c898339fb90175032f (patch) | |
tree | f04e3a67544246b129b181086a621f26bc6c2a21 /src/shape_maps.c | |
parent | 0c90422bb2c5aa11fa5b039e369e3260df459272 (diff) |
codestyle.pl - code style checker added; *.[c|h]: trailing whitespaces are removed
Diffstat (limited to 'src/shape_maps.c')
-rw-r--r-- | src/shape_maps.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/src/shape_maps.c b/src/shape_maps.c index eaa4635..6fc99ab 100644 --- a/src/shape_maps.c +++ b/src/shape_maps.c @@ -1,6 +1,6 @@ #include "include/common.h" -/* - * Shapes maps +/* + * Shapes maps * * Arrays are mirrored upside-down * @@ -14,9 +14,9 @@ * .... .... .... .... */ uint8_t arrShapeL[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {1, 1, 1, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {1, 1, 1, 0}, {0, 0, 1, 0}}; /* @@ -28,9 +28,9 @@ uint8_t arrShapeL[4][4] = { */ uint8_t arrShapeRL[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {1, 1, 1, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {1, 1, 1, 0}, {1, 0, 0, 0}}; /* @@ -41,9 +41,9 @@ uint8_t arrShapeRL[4][4] = { * .... .... .... .... */ uint8_t arrShapeZ[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {0, 1, 1, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {0, 1, 1, 0}, {1, 1, 0, 0}}; /* @@ -54,11 +54,11 @@ uint8_t arrShapeZ[4][4] = { * .... .... .... .... */ uint8_t arrShapeS[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {1, 1, 0, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {1, 1, 0, 0}, {0, 1, 1, 0}}; - + /* * B #5 @@ -68,11 +68,11 @@ uint8_t arrShapeS[4][4] = { * .... .... .... .... */ uint8_t arrShapeB[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {0, 1, 1, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {0, 1, 1, 0}, {0, 1, 1, 0}}; - + /* * I #6 @@ -82,11 +82,11 @@ uint8_t arrShapeB[4][4] = { * .#.. .... .#.. .... */ uint8_t arrShapeI[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {1, 1, 1, 1}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {1, 1, 1, 1}, {0, 0, 0, 0}}; - + /* * T #7 @@ -96,8 +96,8 @@ uint8_t arrShapeI[4][4] = { * .... .... .... .... */ uint8_t arrShapeT[4][4] = { - {0, 0, 0, 0}, - {0, 0, 0, 0}, - {1, 1, 1, 0}, + {0, 0, 0, 0}, + {0, 0, 0, 0}, + {1, 1, 1, 0}, {0, 1, 0, 0}}; - + |