mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Merge pull request #6627 from sepalani/map-strip
PPCSymbolDB: Do not truncate fixed size symbols
This commit is contained in:
commit
52905a5fae
4 changed files with 13 additions and 7 deletions
|
@ -39,7 +39,7 @@ struct Symbol
|
|||
u32 hash = 0; // use for HLE function finding
|
||||
u32 address = 0;
|
||||
u32 flags = 0;
|
||||
int size = 0;
|
||||
u32 size = 0;
|
||||
int numCalls = 0;
|
||||
Type type = Type::Function;
|
||||
int index = 0; // only used for coloring the disasm view
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue