From bc8f932f0c179297df21427005e2504c114241e0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 22 Jun 2018 20:58:18 -0400 Subject: [PATCH] BTEmu: Make WriteToEndpoint's reference parameter const This function doesn't modify anything being referenced. --- Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp | 2 +- Source/Core/Core/IOS/USB/Bluetooth/BTEmu.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp index ba79a1e7ed..806151bbd4 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.cpp @@ -390,7 +390,7 @@ void BluetoothEmu::ACLPool::Store(const u8* data, const u16 size, const u16 conn packet.conn_handle = conn_handle; } -void BluetoothEmu::ACLPool::WriteToEndpoint(USB::V0BulkMessage& endpoint) +void BluetoothEmu::ACLPool::WriteToEndpoint(const USB::V0BulkMessage& endpoint) { auto& packet = m_queue.front(); diff --git a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.h b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.h index f882eb2299..0f7a5686b0 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.h +++ b/Source/Core/Core/IOS/USB/Bluetooth/BTEmu.h @@ -79,7 +79,7 @@ private: explicit ACLPool(Kernel& ios) : m_ios(ios), m_queue() {} void Store(const u8* data, const u16 size, const u16 conn_handle); - void WriteToEndpoint(USB::V0BulkMessage& endpoint); + void WriteToEndpoint(const USB::V0BulkMessage& endpoint); bool IsEmpty() const { return m_queue.empty(); } // For SaveStates