mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +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]"
|
||||
Value = "__cast((System.Type)mData, null)"
|
||||
[[Type.Expand.Item]]
|
||||
Condition = "((System.Type)mStructType).mSize <= sizeof(int)"
|
||||
Condition = "(mStructType != 0) && ((System.Type)mStructType).mSize <= sizeof(int)"
|
||||
Name = "[InlineValue]"
|
||||
Value = "__bitcast((System.Type)mStructType, mData)"
|
||||
[[Type.Expand.Item]]
|
||||
Condition = "((System.Type)mStructType).mSize > sizeof(int)"
|
||||
Condition = "(mStructType != 0) && ((System.Type)mStructType).mSize > sizeof(int)"
|
||||
Name = "[AllocValue]"
|
||||
Value = "*__cast((System.Type)mStructType, \"*\", mData)"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue