Fix potential index out of bounds
This commit is contained in:
parent
402e9f0a31
commit
357ff8a2c5
|
@ -163,7 +163,7 @@ bool slot2_Change(NDS_SLOT2_TYPE changeToType)
|
|||
|
||||
void slot2_setDeviceByType(NDS_SLOT2_TYPE theType)
|
||||
{
|
||||
if (theType > NDS_SLOT2_COUNT || theType < 0)
|
||||
if (theType >= NDS_SLOT2_COUNT || theType < 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue