mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
SymbolDB: Change Symbol's 'analyzed' member into a boolean
It's only ever used as one
This commit is contained in:
@ -39,7 +39,7 @@ struct Symbol
|
||||
int numCalls = 0;
|
||||
Type type = Type::Function;
|
||||
int index = 0; // only used for coloring the disasm view
|
||||
int analyzed = 0;
|
||||
bool analyzed = false;
|
||||
};
|
||||
|
||||
enum
|
||||
|
Reference in New Issue
Block a user