mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
PPCSymbolDB: Do not truncate fixed size symbols
Fix comparison warning
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user