From 84e437ae5bf44b0f75ee3a7bb1ce2a9fb3142f88 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sat, 6 Feb 2021 04:06:09 +0200 Subject: [PATCH] nyx: Explicitly state status in Joycon BT dumping --- nyx/nyx_gui/frontend/gui_options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nyx/nyx_gui/frontend/gui_options.c b/nyx/nyx_gui/frontend/gui_options.c index 5a3e991..277174d 100644 --- a/nyx/nyx_gui/frontend/gui_options.c +++ b/nyx/nyx_gui/frontend/gui_options.c @@ -842,10 +842,10 @@ disabled:; // Check if pairing info was found. if (joycon_found == 2) - strcat(txt_buf, "#C7EA46 Found 2 out of 2 Joy-Con pairing data!#\n"); + strcat(txt_buf, "#C7EA46 Success!#\n#C7EA46 Found 2 out of 2 Joy-Con pairing data!#\n"); else { - s_printf(txt_buf + strlen(txt_buf), "#FF8000 Warning:# Found #FFDD00 %d out of 2# pairing data!\n", joycon_found); + s_printf(txt_buf + strlen(txt_buf), "#FF8000 Failed!#\n#FF8000 Warning:# Found #FFDD00 %d out of 2# pairing data!\n", joycon_found); success = false; }