1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Further bugfix

This commit is contained in:
Jannis 2024-08-14 09:35:57 +00:00 committed by GitHub
parent aa4287ed55
commit 5c6866d078
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -951,15 +951,15 @@ void BfCompiler::EmitTestMethod(BfVDataModule* bfModule, Array<TestMethod>& test
BfFieldDef* fieldDef = field.mFieldRef;
if (fieldDef->mName == "ShouldFail")
{
testMethod.mName += "Sf";
testMethod.mName += "Sf\a";
}
else if (fieldDef->mName == "Profile")
{
testMethod.mName += "Pr";
testMethod.mName += "Pr\a";
}
else if (fieldDef->mName == "Ignore")
{
testMethod.mName += "Ig";
testMethod.mName += "Ig\a";
}
}
else if ((constant != NULL) && (constant->mTypeCode == BfTypeCode_StringId))