diff --git a/Source/Core/VideoCommon/Src/x64DLCache.cpp b/Source/Core/VideoCommon/Src/x64DLCache.cpp index b412c2e274..7c59a3a072 100644 --- a/Source/Core/VideoCommon/Src/x64DLCache.cpp +++ b/Source/Core/VideoCommon/Src/x64DLCache.cpp @@ -4,7 +4,7 @@ // TODO: Handle cache-is-full condition :p -#include +#include #include "Common.h" #include "VideoCommon.h" @@ -216,7 +216,7 @@ inline u64 CreateVMapId(u32 VATUSED) return vmap_id; } -typedef std::map DLMap; +typedef std::unordered_map DLMap; struct VDlist { @@ -225,7 +225,7 @@ struct VDlist u32 count; }; -typedef std::map VDLMap; +typedef std::unordered_map VDLMap; static VDLMap dl_map; static u8* dlcode_cache;