Core: Store object name separately for symbols

This commit is contained in:
Amber Brault
2024-11-02 16:48:11 -04:00
parent 97931a718f
commit 1c4bfc35d9
10 changed files with 73 additions and 19 deletions

View File

@ -44,6 +44,7 @@ struct Symbol
std::string name;
std::string function_name; // stripped function name
std::string object_name; // name of object/source file symbol belongs to
std::vector<SCall> callers; // addresses of functions that call this function
std::vector<SCall> calls; // addresses of functions that are called by this function
u32 hash = 0; // use for HLE function finding