1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 12:02:21 +02:00

Fixed failed var wrapping

This commit is contained in:
Brian Fiete 2020-09-20 09:35:47 -07:00
parent 4765bd9738
commit 31ac632ea6
2 changed files with 4 additions and 2 deletions

View file

@ -5186,7 +5186,9 @@ BfPrimitiveType* BfModule::GetPrimitiveType(BfTypeCode typeCode)
case BfTypeCode_StringId:
BFMODULE_FATAL(this, "Invalid use of StringId");
break;
default: break;
default:
BF_DBG_FATAL("Invalid type");
break;
}
mContext->mPrimitiveTypes[typeCode] = primType;
}