Revert "comment out feos' sandbox change so things compile"

This reverts commit 418eed6cc5.
This commit is contained in:
zeromus 2016-01-30 18:28:51 -06:00
parent 1e57a0a221
commit b0ab66801f
1 changed files with 3 additions and 6 deletions

View File

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