mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-02 22:34:50 +02:00

BluetoothEmu had its own bdaddr_t type which is a old style C struct and typedef, which makes comparisons and copies a bit ugly. On the other hand, BTReal had its own btaddr_t type using std::array. To make things very slightly nicer, this commit changes the Bluetooth code to use a single type (std::array<u8, 6>) for all BT addresses.