Merge pull request #1246 from FioraAeterna/fixblocklinkingagain

JIT: fix accidental disabling of block linking by default
This commit is contained in:
Ryan Houdek 2014-10-09 14:06:17 -05:00
commit e315cd41a2
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
SCoreStartupParameter::SCoreStartupParameter()
: bEnableDebugging(false), bAutomaticStart(false), bBootToPause(false),
bJITNoBlockCache(false), bJITNoBlockLinking(true),
bJITNoBlockCache(false), bJITNoBlockLinking(false),
bJITOff(false),
bJITLoadStoreOff(false), bJITLoadStorelXzOff(false),
bJITLoadStorelwzOff(false), bJITLoadStorelbzxOff(false),