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:
parent
6680577146
commit
24108e35e2
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue