From 72af7b3e5e5953ebbb3b4f543fbaa0c667779987 Mon Sep 17 00:00:00 2001 From: nodchip Date: Thu, 16 Sep 2010 03:46:23 +0000 Subject: [PATCH] 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 --- Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp index 56276507f2..d3cc9dafe2 100644 --- a/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp @@ -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) {