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:
parent
2c48f26536
commit
3263d1a849
1 changed files with 4 additions and 0 deletions
|
@ -153,12 +153,16 @@ namespace System
|
||||||
|
|
||||||
static void* ClassVData_GetTypeData(ClassVData* classVData)
|
static void* ClassVData_GetTypeData(ClassVData* classVData)
|
||||||
{
|
{
|
||||||
|
#if BF_DBG_RUNTIME
|
||||||
#if BF_32_BIT
|
#if BF_32_BIT
|
||||||
Type type = Type.[Friend]GetType_(classVData.mType2);
|
Type type = Type.[Friend]GetType_(classVData.mType2);
|
||||||
#else
|
#else
|
||||||
Type type = Type.[Friend]GetType_((.)(classVData.mType >> 32));
|
Type type = Type.[Friend]GetType_((.)(classVData.mType >> 32));
|
||||||
#endif
|
#endif
|
||||||
return &type.[Friend]mSize;
|
return &type.[Friend]mSize;
|
||||||
|
#else
|
||||||
|
return null;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static Type Object_GetType(Object obj)
|
static Type Object_GetType(Object obj)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue