修复Memory类的错误

This commit is contained in:
lenheart
2024-09-17 15:38:28 +08:00
parent dccbde868e
commit 2ade285084
133 changed files with 32299 additions and 504 deletions

View File

@@ -38,8 +38,9 @@ static SQInteger PointerOperation(HSQUIRRELVM v)
SQInteger Offset;
sq_getinteger(v, 3, &Offset);
const SQChar *Type;
sq_getstring(v, 4, &Type);
const SQChar *TypecharBuf;
sq_getstring(v, 4, &TypecharBuf);
std::string Type(TypecharBuf);
if (Type == "+")
{