Add warning about splashes being disabled

This commit is contained in:
2017-09-09 20:19:30 -04:00
parent 4ceac06f0c
commit 26d8c283b3
2 changed files with 18 additions and 4 deletions

View File

@@ -109,8 +109,8 @@ void throw_error(char* error, int error_type) {
hidScanInput();
u32 kDown = hidKeysDown();
draw_base_interface();
pp2d_draw_text(70, 120, 0.8, 0.8, COLOR_RED, error);
pp2d_draw_wtext(70, 150, 0.8, 0.8, COLOR_WHITE, L"Press \uE000 to shut down.");
pp2d_draw_text_center(GFX_TOP, 120, 0.6, 0.6, COLOR_RED, error);
pp2d_draw_wtext_center(GFX_TOP, 150, 0.6, 0.6, COLOR_WHITE, L"Press \uE000 to shut down.");
pp2d_end_draw();
if (kDown & KEY_A) {
if (homebrew)
@@ -126,8 +126,8 @@ void throw_error(char* error, int error_type) {
hidScanInput();
u32 kDown = hidKeysDown();
draw_base_interface();
pp2d_draw_text(70, 120, 0.8, 0.8, COLOR_YELLOW, error);
pp2d_draw_wtext(70, 150, 0.8, 0.8, COLOR_WHITE, L"Press \uE000 to continue.");
pp2d_draw_text_center(GFX_TOP, 120, 0.6, 0.6, COLOR_YELLOW, error);
pp2d_draw_wtext_center(GFX_TOP, 150, 0.6, 0.6, COLOR_WHITE, L"Press \uE000 to continue.");
pp2d_end_draw();
if (kDown & KEY_A) break;
}