Skip to content

Commit

Permalink
Merge pull request #1451 from lioncash/const
Browse files Browse the repository at this point in the history
SI_Device: Make GetDeviceNumber and GetDeviceType const.
  • Loading branch information
comex committed Oct 31, 2014
2 parents ef1520e + 72c9588 commit f95b44c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/HW/SI_Device.h
Expand Up @@ -84,12 +84,12 @@ class ISIDevice
virtual void DoState(PointerWrap& p) {}


int GetDeviceNumber()
int GetDeviceNumber() const
{
return m_iDeviceNumber;
}

SIDevices GetDeviceType()
SIDevices GetDeviceType() const
{
return m_deviceType;
}
Expand Down

0 comments on commit f95b44c

Please sign in to comment.