Core: Change the default max. JIT block size from 100 to 12, since 12 has been tested to be more compatible and safer to use.

- There is only a negligible performance difference between 100 and 12.
- It is better for users to change the JIT block size from 12 to 100
themselves, since it might make them more aware that they are
sacrificing compatibility in favor of speed.
This commit is contained in:
rogerman 2017-11-20 12:57:24 -08:00
parent 6680577146
commit 24108e35e2
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ extern struct TCommonSettings
, GFX3D_Renderer_TextureSmoothing(false) , GFX3D_Renderer_TextureSmoothing(false)
, GFX3D_TXTHack(false) , GFX3D_TXTHack(false)
, GFX3D_PrescaleHD(1) , GFX3D_PrescaleHD(1)
, jit_max_block_size(100) , jit_max_block_size(12)
, loadToMemory(false) , loadToMemory(false)
, UseExtBIOS(false) , UseExtBIOS(false)
, SWIFromBIOS(false) , SWIFromBIOS(false)