Increase dynarec code cache size to 10 MB
Fixes frequent code cache invalidation due to lack of space, which kills performance (Extreme Sports)
This commit is contained in:
parent
315205caa9
commit
0df91770d2
|
@ -46,7 +46,7 @@
|
|||
#include "blockmanager.h"
|
||||
|
||||
|
||||
#define CODE_SIZE (6*1024*1024)
|
||||
#define CODE_SIZE (10*1024*1024)
|
||||
|
||||
|
||||
//alternative emit ptr, set to 0 to use the main buffer
|
||||
|
|
Loading…
Reference in New Issue