summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-21 19:08:08 -0500
committerLioncash <mathew1800@gmail.com>2017-01-21 22:36:09 -0500
commitd2ff34e5101e9ae8a98b15f03793ec94cf2c9fcd (patch)
tree2a7c845b4e731295e840f9d8579af1c582edd927
parent387769b4e211aab0254e65275843e74396636a74 (diff)
EXI_Channel: Remove const qualifiers from member function declaration parameters
Const used on value types only really has a use when used within the definition.
-rw-r--r--Source/Core/Core/HW/EXI/EXI_Channel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Core/HW/EXI/EXI_Channel.h b/Source/Core/Core/HW/EXI/EXI_Channel.h
index 9ede8f2be7..6bada2dc40 100644
--- a/Source/Core/Core/HW/EXI/EXI_Channel.h
+++ b/Source/Core/Core/HW/EXI/EXI_Channel.h
@@ -23,15 +23,15 @@ public:
~CEXIChannel();
// get device
- IEXIDevice* GetDevice(const u8 chip_select);
+ IEXIDevice* GetDevice(u8 chip_select);
IEXIDevice* FindDevice(TEXIDevices device_type, int custom_index = -1);
void RegisterMMIO(MMIO::Mapping* mmio, u32 base);
void SendTransferComplete();
- void AddDevice(const TEXIDevices device_type, const int device_num);
- void AddDevice(std::unique_ptr<IEXIDevice> device, const int device_num,
+ void AddDevice(TEXIDevices device_type, int device_num);
+ void AddDevice(std::unique_ptr<IEXIDevice> device, int device_num,
bool notify_presence_changed = true);
// Remove all devices