From 72c958810c47e17a1f220aac9294f987f28e81e0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 31 Oct 2014 09:30:56 -0400 Subject: [PATCH] SI_Device: Make GetDeviceNumber and GetDeviceType const. --- Source/Core/Core/HW/SI_Device.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/HW/SI_Device.h b/Source/Core/Core/HW/SI_Device.h index 1280a6bd29..93c8d2eadb 100644 --- a/Source/Core/Core/HW/SI_Device.h +++ b/Source/Core/Core/HW/SI_Device.h @@ -84,12 +84,12 @@ public: virtual void DoState(PointerWrap& p) {} - int GetDeviceNumber() + int GetDeviceNumber() const { return m_iDeviceNumber; } - SIDevices GetDeviceType() + SIDevices GetDeviceType() const { return m_deviceType; }