mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
SI_Device: Make GetDeviceNumber and GetDeviceType const.
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user