diff options
author | Kurausukun <lord.uber1@gmail.com> | 2020-10-19 05:58:51 -0400 |
---|---|---|
committer | Kurausukun <lord.uber1@gmail.com> | 2020-10-19 05:58:51 -0400 |
commit | 7d5fce9a72de91b20d3908b5c6dbfac18b6524a4 (patch) | |
tree | 4145d18c7922dc69c2bd7f4f896e32f738cc1d0f | |
parent | 7dc95a0103af08c95c9093b6efa6c77af77a2538 (diff) |
re-remove extra semicolons (from #1104)
-rw-r--r-- | src/AgbRfu_LinkManager.c | 2 | ||||
-rw-r--r-- | tools/gbagfx/gfx.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/AgbRfu_LinkManager.c b/src/AgbRfu_LinkManager.c index e4127ee09..f6ebcc726 100644 --- a/src/AgbRfu_LinkManager.c +++ b/src/AgbRfu_LinkManager.c @@ -918,7 +918,7 @@ static void rfu_LMAN_REQ_callback(u16 reqCommandId, u16 reqResult) { lman.reserveDisconnectSlot_flag = 0; lman.acceptCount = 0; - lman.acceptSlot_flag = 0;; + lman.acceptSlot_flag = 0; lman.parent_child = MODE_NEUTRAL; rfu_LMAN_managerChangeAgbClockMaster(); if (reqCommandId == ID_STOP_MODE_REQ) 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: |