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 /src/save_failed_screen.c | |
parent | e8568b79efa2f12ce929a4db15c8786f1dccc359 (diff) | |
parent | 1e8ffcb8986aa0560bcb1113717ce26a58526be2 (diff) |
Merge pull request #1104 from PokeCodec/Explcit-Casting
Reduce "Implicit conversion" warnings
Diffstat (limited to 'src/save_failed_screen.c')
-rw-r--r-- | src/save_failed_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/save_failed_screen.c b/src/save_failed_screen.c index a2a2acc8d..7c824e82d 100644 --- a/src/save_failed_screen.c +++ b/src/save_failed_screen.c @@ -349,7 +349,7 @@ static void VBlankCB_UpdateClockGraphics(void) gMain.oamBuffer[0] = sClockOamData; gMain.oamBuffer[0].x = 112; - gMain.oamBuffer[0].y = (CLOCK_WIN_TOP + 1) * 8;; + gMain.oamBuffer[0].y = (CLOCK_WIN_TOP + 1) * 8; if (gSaveFailedClockInfo[CLOCK_RUNNING] != FALSE) { |