From fbcf86870da1aa816ff9bea83f312aa8f303454c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 22 Jan 2017 22:26:32 -0500 Subject: [PATCH] SI_Device: Remove const specifiers from SIDevice_Create declaration's parameters These are only relevant on the definition of the function. --- Source/Core/Core/HW/SI/SI_Device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/SI/SI_Device.h b/Source/Core/Core/HW/SI/SI_Device.h index 6702c33969..5547e7eabc 100644 --- a/Source/Core/Core/HW/SI/SI_Device.h +++ b/Source/Core/Core/HW/SI/SI_Device.h @@ -99,4 +99,4 @@ protected: bool SIDevice_IsGCController(SIDevices type); -std::unique_ptr SIDevice_Create(const SIDevices device, const int port_number); +std::unique_ptr SIDevice_Create(SIDevices device, int port_number);