mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
Increase default JIT cache size to 16MB. Tweak the mp2 pal speed hack.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1272 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f87c709aa9
commit
7dfbc574ae
@ -3,7 +3,7 @@
|
|||||||
#Values set here will override the main dolphin settings.
|
#Values set here will override the main dolphin settings.
|
||||||
[Speedhacks]
|
[Speedhacks]
|
||||||
# Patch OSYieldThread to take more time - MP2's idle loop is really stupid.
|
# Patch OSYieldThread to take more time - MP2's idle loop is really stupid.
|
||||||
0x80375c68=200
|
0x80375c68=400
|
||||||
[EmuState]
|
[EmuState]
|
||||||
#The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
#The Emulation State. 1 is worst, 5 is best, 0 is not set.
|
||||||
EmulationStateId = 2
|
EmulationStateId = 2
|
||||||
|
@ -71,8 +71,8 @@ namespace Jit64
|
|||||||
TRAMPOLINE_SIZE = 1024*1024,
|
TRAMPOLINE_SIZE = 1024*1024,
|
||||||
//MAX_NUM_BLOCKS = 65536,
|
//MAX_NUM_BLOCKS = 65536,
|
||||||
};
|
};
|
||||||
int CODE_SIZE = 1024*1024*8; // nonconstant to be able to have an option for it
|
int CODE_SIZE = 1024*1024*16; // nonconstant to be able to have an option for it
|
||||||
int MAX_NUM_BLOCKS = 65536;
|
int MAX_NUM_BLOCKS = 65536*2;
|
||||||
|
|
||||||
static u8 **blockCodePointers; // cut these in half and force below 2GB?
|
static u8 **blockCodePointers; // cut these in half and force below 2GB?
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user