mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 04:52:21 +02:00
Variant dbgvis fix
This commit is contained in:
parent
f266fe69d1
commit
c308908d41
1 changed files with 2 additions and 2 deletions
4
IDE/dist/BeefDbgVis.toml
vendored
4
IDE/dist/BeefDbgVis.toml
vendored
|
@ -122,11 +122,11 @@ Condition = "mStructType == 3"
|
||||||
Name = "[Null]"
|
Name = "[Null]"
|
||||||
Value = "__cast((System.Type)mData, null)"
|
Value = "__cast((System.Type)mData, null)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "((System.Type)mStructType).mSize <= sizeof(int)"
|
Condition = "(mStructType != 0) && ((System.Type)mStructType).mSize <= sizeof(int)"
|
||||||
Name = "[InlineValue]"
|
Name = "[InlineValue]"
|
||||||
Value = "__bitcast((System.Type)mStructType, mData)"
|
Value = "__bitcast((System.Type)mStructType, mData)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "((System.Type)mStructType).mSize > sizeof(int)"
|
Condition = "(mStructType != 0) && ((System.Type)mStructType).mSize > sizeof(int)"
|
||||||
Name = "[AllocValue]"
|
Name = "[AllocValue]"
|
||||||
Value = "*__cast((System.Type)mStructType, \"*\", mData)"
|
Value = "*__cast((System.Type)mStructType, \"*\", mData)"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue