mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Fixed dictionary dbgvis - size vs stride issue
This commit is contained in:
parent
7ad6df2c6e
commit
2fdfc38a28
1 changed files with 2 additions and 2 deletions
|
@ -5740,8 +5740,8 @@ String WinDebugger::GetDictionaryItems(DbgCompileUnit* dbgCompileUnit, DebugVisu
|
||||||
count = -1;
|
count = -1;
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
int entrySize = entriesPtr.mType->mTypeParam->GetByteCount();
|
int entrySize = entriesPtr.mType->mTypeParam->GetStride();
|
||||||
int bucketIdxSize = bucketsPtr.mType->mTypeParam->GetByteCount();
|
int bucketIdxSize = bucketsPtr.mType->mTypeParam->GetStride();
|
||||||
|
|
||||||
String addrs;
|
String addrs;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue