This commit is contained in:
2025-12-09 21:49:37 +02:00
parent 6586a98f8d
commit 968de34cae
19 changed files with 920 additions and 190 deletions

View File

@@ -38,7 +38,7 @@ TEST_CASE("Scripting")
CHECK(method);
MObject* result = method->Invoke(nullptr, nullptr, nullptr);
CHECK(result);
int32 resultValue = MUtils::Unbox<int32>(result);
int32 resultValue = MUtils::Unbox<int32>(result, true);
CHECK(resultValue == 0);
}