mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
Merge pull request #1451 from lioncash/const
SI_Device: Make GetDeviceNumber and GetDeviceType const.
This commit is contained in:
commit
f95b44c96d
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue