From 407550de3026a7d01c3c96b65b8f130825531d53 Mon Sep 17 00:00:00 2001 From: Floogle <18466542+skyfloogle@users.noreply.github.com> Date: Wed, 27 Mar 2024 09:06:58 +0100 Subject: [PATCH] swap yes and no to follow conventions it's ok because they don't overlap the reset button --- 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 9329538..dbe1473 100644 --- a/source/3ds/gui_hard.c +++ b/source/3ds/gui_hard.c @@ -205,9 +205,9 @@ static Button colour_filter_buttons[] = { static bool areyousure(C2D_Text *message); static Button areyousure_buttons[] = { #define AREYOUSURE_YES 0 - {"Yes", .x=160+32, .y=180, .w=64, .h=48}, + {"Yes", .x=160-48-32, .y=180, .w=64, .h=48}, #define AREYOUSURE_NO 1 - {"No", .x=160-48-32, .y=180, .w=64, .h=48}, + {"No", .x=160+32, .y=180, .w=64, .h=48}, }; static void sound_error();