comment out feos' sandbox change so things compile

This commit is contained in:
adelikat 2016-01-30 18:10:23 -05:00
parent ca3b43973c
commit 418eed6cc5
1 changed files with 6 additions and 3 deletions
BizHawk.Client.Common/lua

View File

@ -56,9 +56,12 @@ namespace BizHawk.Client.Common
public void Call(string name = null)
{
LuaSandbox.Sandbox(() => {
_function.Call(name);
});
// TODO
//LuaSandbox.Sandbox(() => {
// _function.Call(name);
//});
_function.Call(name);
}
}
}