Skip to content

Commit

Permalink
Core: Increase the minimal amount of free space in recompiler memory
Browse files Browse the repository at this point in the history
  • Loading branch information
project64 committed May 16, 2024
1 parent a1f4635 commit ae21e10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit ae21e10

Please sign in to comment.