From d87443e1e21296765dc8541aaadf2ec7cadf5576 Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Sun, 10 Oct 2021 20:16:49 +0200 Subject: [PATCH] Small pairing menu fix --- README.md | 6 +++--- source/pair_menu.cpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ef62d88..504f6c2 100644 --- a/README.md +++ b/README.md @@ -34,14 +34,14 @@ After rebooting the console or exiting System Settings, relaunch Bloopair. ## Pairing a DualShock 3 The DualShock 3 needs to be paired using a USB cable. After the initial pairing it can be used like any other wireless Bluetooth controller. -- While launching Bloopair from the Homebrew Launcher, hold down the A button on the Gamepad or a connected controller. +- While launching Bloopair from the Homebrew Launcher, hold down the A button on the Gamepad. You should now be in the USB pairing menu. - Connect the DualShock 3 using a USB cable to the front or back ports of the console. - The screen will say "Paired!" once the controller has been successfully paired. -You can now remove the USB cable from the controller. +You can now remove the USB cable from the controller. Press the PS button to connect it to the console. - Press the B button to exit to the Home Menu -The DualShock 3 is now ready. Press the PS button to connect it to the console. +The DualShock 3 is now ready to use with the console. ## FAQ / Troubleshooting diff --git a/source/pair_menu.cpp b/source/pair_menu.cpp index 9f7f901..974e735 100644 --- a/source/pair_menu.cpp +++ b/source/pair_menu.cpp @@ -225,13 +225,13 @@ void handle_pairing_menu() kpad_status.extensionType == WPAD_EXT_MPLUS_CLASSIC) { if (kpad_status.pro.hold & WPAD_PRO_BUTTON_B) { - menuOpened = true; + menuOpened = false; break; } } else { if (kpad_status.hold & WPAD_BUTTON_B) { - menuOpened = true; + menuOpened = false; break; } }