Jit64/JitIL: Fixed the constant value used to control block merging.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6210 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nodchip 2010-09-16 03:46:23 +00:00
parent 2774d4ffd4
commit 72af7b3e5e

View File

@ -43,7 +43,7 @@ using namespace std;
static const int CODEBUFFER_SIZE = 32000;
// 0 does not perform block merging
static const int FUNCTION_FOLLOWING_THRESHOLD = 0;
static const int FUNCTION_FOLLOWING_THRESHOLD = 16;
CodeBuffer::CodeBuffer(int size)
{