Merge pull request #1170 from lioncash/bounds

SI: Fix bounds check in GetDeviceType
This commit is contained in:
skidau 2014-09-28 14:57:38 +10:00
commit baeca3e03b

View file

@ -504,7 +504,7 @@ void UpdateDevices()
SIDevices GetDeviceType(int channel)
{
if (channel < 0 || channel > 4)
if (channel < 0 || channel > 3)
return SIDEVICE_NONE;
else
return g_Channel[channel].m_pDevice->GetDeviceType();