1
0
Fork 0
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:
Brian Fiete 2020-02-08 06:12:45 -08:00
parent 7ad6df2c6e
commit 2fdfc38a28

View file

@ -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;