Minor Change: g_SymbolAddresses is now an ordered map.
In real terms, this doesn't really make any difference, however, when analysing HLE Cache files, the functions are in alphabetical order and easier to follow.
This commit is contained in:
parent
a39f95053e
commit
fdd58b72b2
|
@ -54,9 +54,10 @@ static inline void EmuInstallPatch(std::string FunctionName, xbaddr FunctionAddr
|
|||
|
||||
#include <shlobj.h>
|
||||
#include <unordered_map>
|
||||
#include <map>
|
||||
#include <sstream>
|
||||
|
||||
std::unordered_map<std::string, xbaddr> g_SymbolAddresses;
|
||||
std::map<std::string, xbaddr> g_SymbolAddresses;
|
||||
std::unordered_map<std::string, subhook::Hook> g_FunctionHooks;
|
||||
bool g_HLECacheUsed = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue