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:
Luke Usher 2017-07-30 08:27:23 +01:00
parent a39f95053e
commit fdd58b72b2
1 changed files with 2 additions and 1 deletions

View File

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