PPCSymbolDB: Do not truncate fixed size symbols

Fix comparison warning
This commit is contained in:
Sepalani
2018-04-10 09:58:35 +04:00
parent 9b8866ba78
commit 7d36165489
4 changed files with 12 additions and 5 deletions

View File

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