Skip to content

Commit

Permalink
Small pairing menu fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryOderNichts committed Oct 10, 2021
1 parent 10fbb72 commit d87443e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions source/pair_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit d87443e

Please sign in to comment.