diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-08 21:23:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-08 21:23:21 -0500 |
commit | 1c82571fa04ecad7d4a805e5fbec4691643ac655 (patch) | |
tree | 394ee77362fdda45e808e3362c473d4cfb653dcc /src/save_failed_screen.c | |
parent | 737a5cba552275b43a89d59d6c5595ce4af25146 (diff) | |
parent | c6b83bbb215ad25f533346873286f103c582d906 (diff) |
Merge pull request #1542 from GriffinRichards/doc-menu
Document menu
Diffstat (limited to 'src/save_failed_screen.c')
-rw-r--r-- | src/save_failed_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/save_failed_screen.c b/src/save_failed_screen.c index 4f0373270..e7bdc3400 100644 --- a/src/save_failed_screen.c +++ b/src/save_failed_screen.c @@ -222,8 +222,8 @@ static void CB2_SaveFailedScreen(void) DrawStdFrameWithCustomTileAndPalette(sWindowIds[CLOCK_WIN_ID], FALSE, 0x214, 0xE); FillWindowPixelBuffer(sWindowIds[CLOCK_WIN_ID], PIXEL_FILL(1)); // backwards? FillWindowPixelBuffer(sWindowIds[TEXT_WIN_ID], PIXEL_FILL(1)); - CopyWindowToVram(sWindowIds[CLOCK_WIN_ID], 2); // again? - CopyWindowToVram(sWindowIds[TEXT_WIN_ID], 1); + CopyWindowToVram(sWindowIds[CLOCK_WIN_ID], COPYWIN_GFX); // again? + CopyWindowToVram(sWindowIds[TEXT_WIN_ID], COPYWIN_MAP); SaveFailedScreenTextPrint(gText_SaveFailedCheckingBackup, 1, 0); BeginNormalPaletteFade(PALETTES_ALL, 0, 16, 0, RGB_BLACK); EnableInterrupts(1); |