diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-07-28 11:10:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 11:10:00 -0400 |
commit | 70617d56e4ef0ef1432e0cc7fb3214a63d773578 (patch) | |
tree | 9f1551240478be6722a0be797d35eb4034e5608c /tools/gbagfx/gfx.c | |
parent | e8568b79efa2f12ce929a4db15c8786f1dccc359 (diff) | |
parent | 1e8ffcb8986aa0560bcb1113717ce26a58526be2 (diff) |
Merge pull request #1104 from PokeCodec/Explcit-Casting
Reduce "Implicit conversion" warnings
Diffstat (limited to 'tools/gbagfx/gfx.c')
-rw-r--r-- | tools/gbagfx/gfx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gbagfx/gfx.c b/tools/gbagfx/gfx.c index 8d959465f..4e85953fd 100644 --- a/tools/gbagfx/gfx.c +++ b/tools/gbagfx/gfx.c @@ -282,7 +282,7 @@ static void HflipTile(unsigned char * tile, int bitDepth) for (i = 0; i < 8; i++) { SWAP_NYBBLES(&tile[4 * i + 0], &tile[4 * i + 3]); - SWAP_NYBBLES(&tile[4 * i + 1], &tile[4 * i + 2]);; + SWAP_NYBBLES(&tile[4 * i + 1], &tile[4 * i + 2]); } break; case 8: |