PlayerVisibility: bugfix, off by one :/

This commit is contained in:
BotoX 2019-08-30 20:20:11 +02:00
parent 492a36ec5a
commit daa588f03d

View File

@ -173,7 +173,7 @@ public MRESReturn AcceptInput(int pThis, Handle hReturn, Handle hParams)
sValue[i] = '\0';
bFound = false;
if(iArgs > sizeof(aArgs))
if(iArgs >= sizeof(aArgs))
break;
}
continue;