default to using luainterface over nlua, supposedly the memory leaks are resolved in luainterface

This commit is contained in:
adelikat 2019-12-04 16:56:27 -06:00
parent 1dbf932486
commit 4711950f9c
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ namespace BizHawk.Client.Common
public int FlushSaveRamFrames;
//check CurrentDomain_AssemblyResolve if you change the defaults or name of this key
public bool UseNLua = true; // Whether or not to use a good, reliable, memory-leak-free lua interface that is slower than the original luainterface
public bool UseNLua = false; // Whether or not to use a good, reliable, memory-leak-free lua interface that is slower than the original luainterface
public bool TurboSeek { get; set; }