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

Fixed "Tiny" test accidental size increase

This commit is contained in:
Brian Fiete 2025-05-19 09:02:02 +02:00
parent 2c48f26536
commit 3263d1a849

View file

@ -153,12 +153,16 @@ namespace System
static void* ClassVData_GetTypeData(ClassVData* classVData)
{
#if BF_DBG_RUNTIME
#if BF_32_BIT
Type type = Type.[Friend]GetType_(classVData.mType2);
#else
Type type = Type.[Friend]GetType_((.)(classVData.mType >> 32));
#endif
return &type.[Friend]mSize;
#else
return null;
#endif
}
static Type Object_GetType(Object obj)