From c58e663ea72dbb37c7e137620f21dbf8dcaf840c Mon Sep 17 00:00:00 2001 From: Floogle <18466542+skyfloogle@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:58:57 +0100 Subject: [PATCH] default areyousure cursor to no --- source/3ds/gui_hard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/3ds/gui_hard.c b/source/3ds/gui_hard.c index 07f2ec5..9329538 100644 --- a/source/3ds/gui_hard.c +++ b/source/3ds/gui_hard.c @@ -1006,7 +1006,7 @@ static void sound_error() { static bool areyousure(C2D_Text *message) { #undef DEFAULT_RETURN #define DEFAULT_RETURN false - LOOP_BEGIN(areyousure_buttons, -1); + LOOP_BEGIN(areyousure_buttons, AREYOUSURE_NO); C2D_DrawText(message, C2D_AlignCenter | C2D_WithColor, 320 / 2, 80, 0, 0.7, 0.7, C2D_Color32(TINT_R, TINT_G, TINT_B, 255)); LOOP_END(areyousure_buttons); #undef DEFAULT_RETURN @@ -1626,4 +1626,4 @@ int guiGetInput(bool do_switching) { backlightEnabled = toggleBacklight(true); } return 0; -} \ No newline at end of file +}