BlockCache on ARM/ARM64: Allow two more exits

This commit is contained in:
Henrik Rydgård 2023-09-26 19:44:05 +02:00
parent 51d5026792
commit dd2b1ace88

View File

@ -29,7 +29,7 @@
#include "Core/MIPS/MIPS.h"
#if PPSSPP_ARCH(ARM) || PPSSPP_ARCH(ARM64)
const int MAX_JIT_BLOCK_EXITS = 2;
const int MAX_JIT_BLOCK_EXITS = 4;
#else
const int MAX_JIT_BLOCK_EXITS = 8;
#endif