mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-01-30 06:29:41 +05:00
fix incorrect bit indices for IsByRefLike and HasInlineArray in Il2CppTypeDefinitionBitfield
This commit is contained in:
@@ -17,6 +17,6 @@ public partial record struct Il2CppTypeDefinitionBitfield
|
||||
public bool DefaultPackingSize => ((_value >> 10) & 1) == 1;
|
||||
public bool DefaultClassSize => ((_value >> 11) & 1) == 1;
|
||||
public PackingSize ClassSize => (PackingSize)((_value >> 12) & 0b1111);
|
||||
public bool IsByRefLike => ((_value >> 13) & 1) == 1;
|
||||
public bool HasInlineArray => ((_value >> 14) & 1) == 1;
|
||||
public bool IsByRefLike => ((_value >> 16) & 1) == 1;
|
||||
public bool HasInlineArray => ((_value >> 17) & 1) == 1;
|
||||
}
|
||||
Reference in New Issue
Block a user