From 71fa08813a25d152ffe7bfe0e82b3330dad3a23f Mon Sep 17 00:00:00 2001 From: Shawn Rast Date: Tue, 24 Jun 2025 00:19:52 -0500 Subject: [PATCH] BT passthrough uses selected device rather than first alphabetical compatible device --- Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp | 12 ++++++++++++ Source/Core/Core/IOS/USB/Bluetooth/BTReal.h | 1 + 2 files changed, 13 insertions(+) diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp index fae0c6e662..7940c37fc0 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp @@ -73,6 +73,13 @@ BluetoothRealDevice::~BluetoothRealDevice() SaveLinkKeys(); } +bool BluetoothRealDevice::HasConfiguredBluetoothDevice() +{ + const int configured_vid = Config::Get(Config::MAIN_BLUETOOTH_PASSTHROUGH_VID); + const int configured_pid = Config::Get(Config::MAIN_BLUETOOTH_PASSTHROUGH_PID); + return configured_vid != -1 && configured_pid != -1; +} + bool BluetoothRealDevice::IsConfiguredBluetoothDevice(u16 vid, u16 pid) { const int configured_vid = Config::Get(Config::MAIN_BLUETOOTH_PASSTHROUGH_VID); @@ -99,6 +106,11 @@ std::optional BluetoothRealDevice::Open(const OpenRequest& request) return true; } + if (HasConfiguredBluetoothDevice() && + !IsConfiguredBluetoothDevice(device_descriptor.idVendor, device_descriptor.idProduct)) + { + return true; + } if (IsBluetoothDevice(device_descriptor) && OpenDevice(device_descriptor, device)) { unsigned char manufacturer[50] = {}, product[50] = {}, serial_number[50] = {}; diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.h b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.h index 96a18c0617..b40ace416e 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTReal.h +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTReal.h @@ -59,6 +59,7 @@ public: void HandleBulkOrIntrTransfer(libusb_transfer* finished_transfer); static bool IsConfiguredBluetoothDevice(u16 vid, u16 pid); + static bool HasConfiguredBluetoothDevice(); struct BluetoothDeviceInfo {