Core: Increase the minimal amount of free space in recompiler memory
This commit is contained in:
parent
a1f46356fb
commit
ae21e10a8d
|
@ -52,7 +52,7 @@ bool CRecompMemory::AllocateMemory()
|
|||
void CRecompMemory::CheckRecompMem()
|
||||
{
|
||||
uint32_t Size = (uint32_t)((uint8_t *)m_RecompPos - (uint8_t *)m_RecompCode);
|
||||
if ((Size + 0x20000) < m_RecompSize)
|
||||
if ((Size + 0x50000) < m_RecompSize)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue