mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-05-31 06:57:09 +02:00
Update squirrel to the latest version straight from the official repository.
This commit is contained in:
Vendored
+1
-1
@@ -107,7 +107,7 @@ void SQVM::Raise_ParamTypeError(SQInteger nparam,SQInteger typemask,SQInteger ty
|
||||
SQInteger found = 0;
|
||||
for(SQInteger i=0; i<16; i++)
|
||||
{
|
||||
SQInteger mask = 0x00000001 << i;
|
||||
SQInteger mask = ((SQInteger)1) << i;
|
||||
if(typemask & (mask)) {
|
||||
if(found>0) StringCat(exptypes,SQString::Create(_ss(this), _SC("|"), -1), exptypes);
|
||||
found ++;
|
||||
|
||||
Reference in New Issue
Block a user