Merge pull request #1451 from lioncash/const

SI_Device: Make GetDeviceNumber and GetDeviceType const.
This commit is contained in:
comex 2014-10-31 16:07:04 -04:00
commit f95b44c96d

View file

@ -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;
}