From 4711950f9c09d46d443e7674741ed5c4e833f7c4 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 4 Dec 2019 16:56:27 -0600 Subject: [PATCH] default to using luainterface over nlua, supposedly the memory leaks are resolved in luainterface --- BizHawk.Client.Common/config/Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/config/Config.cs b/BizHawk.Client.Common/config/Config.cs index 2fe244c2dc..1de5c89783 100644 --- a/BizHawk.Client.Common/config/Config.cs +++ b/BizHawk.Client.Common/config/Config.cs @@ -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; }