mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
Merge pull request #12174 from AdmiralCurtiss/jitcache-32bit
Core/JitCache: Don't try to allocate the fast block map on 32-bit builds.
This commit is contained in:
commit
57e56f4bc2
@ -42,7 +42,11 @@ void JitBaseBlockCache::Init()
|
||||
{
|
||||
Common::JitRegister::Init(Config::Get(Config::MAIN_PERF_MAP_DIR));
|
||||
|
||||
#ifdef _ARCH_64
|
||||
m_fast_block_map = reinterpret_cast<JitBlock**>(m_block_map_arena.Create(FAST_BLOCK_MAP_SIZE));
|
||||
#else
|
||||
m_fast_block_map = nullptr;
|
||||
#endif
|
||||
if (m_fast_block_map)
|
||||
m_fast_block_map_ptr = m_fast_block_map;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user