1
0
Fork 0

Fix undecorated label display when it comes from exported symbols.

This commit is contained in:
Owerosu 2022-09-17 17:27:42 +02:00
parent 3c22b64cd8
commit 7de0e994dd
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ bool SymbolFromAddressExact(duint address, SymbolInfo & symInfo)
symInfo.size = 0;
symInfo.disp = 0;
symInfo.decoratedName = modExport->name;
symInfo.undecoratedName = modExport->undecoratedName;
symInfo.publicSymbol = true;
return true;
}