mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 20:56:25 +00:00
PPCSymbolDB: Do not truncate fixed size symbols
Fix comparison warning
This commit is contained in:
parent
9b8866ba78
commit
7d36165489
4 changed files with 12 additions and 5 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