SI_Device: Make GetDeviceNumber and GetDeviceType const.

This commit is contained in:
Lioncash 2014-10-31 09:30:56 -04:00
parent ef1520eab0
commit 72c958810c
1 changed files with 2 additions and 2 deletions

View File

@ -84,12 +84,12 @@ public:
virtual void DoState(PointerWrap& p) {} virtual void DoState(PointerWrap& p) {}
int GetDeviceNumber() int GetDeviceNumber() const
{ {
return m_iDeviceNumber; return m_iDeviceNumber;
} }
SIDevices GetDeviceType() SIDevices GetDeviceType() const
{ {
return m_deviceType; return m_deviceType;
} }