lua - implement client.exit()

This commit is contained in:
adelikat 2015-07-31 18:44:53 -04:00
parent a8fc79910f
commit ad821c90d5
2 changed files with 14 additions and 0 deletions

View File

@ -590,6 +590,11 @@ namespace BizHawk.Client.EmuHawk
}
private void ExitMenuItem_Click(object sender, EventArgs e)
{
CloseEmulator();
}
public void CloseEmulator()
{
if (GlobalWin.Tools.AskSave())
{

View File

@ -36,6 +36,15 @@ namespace BizHawk.Client.EmuHawk
public override string Name { get { return "client"; } }
[LuaMethodAttributes(
"exit",
"Closes the emulator"
)]
public void CloseEmulator()
{
GlobalWin.MainForm.CloseEmulator();
}
[LuaMethodAttributes(
"borderheight",
"Gets the current height in pixels of the border around the emulator's drawing area"