Customize dialog - lua options - don't claim the default option is "use at yoru own risk"

This commit is contained in:
adelikat 2020-04-24 17:33:23 -05:00
parent 49395b435f
commit fb443f262c
2 changed files with 4 additions and 4 deletions

View File

@ -304,7 +304,7 @@ namespace BizHawk.Client.EmuHawk
RefreshAspectRatioOptions();
}
void RefreshAspectRatioOptions()
private void RefreshAspectRatioOptions()
{
grpARSelection.Enabled = checkLetterbox.Checked;
checkPadInteger.Enabled = checkLetterbox.Checked;

View File

@ -477,8 +477,8 @@
//
// flpGrpLuaEngine
//
this.flpGrpLuaEngine.Controls.Add(this.rbKopiLua);
this.flpGrpLuaEngine.Controls.Add(this.rbLuaInterface);
this.flpGrpLuaEngine.Controls.Add(this.rbKopiLua);
this.flpGrpLuaEngine.Location = new System.Drawing.Point(7, 16);
this.flpGrpLuaEngine.Name = "flpGrpLuaEngine";
//
@ -486,13 +486,13 @@
//
this.rbKopiLua.Name = "rbKopiLua";
this.rbKopiLua.Tag = BizHawk.Client.Common.ELuaEngine.NLuaPlusKopiLua;
this.rbKopiLua.Text = "NLua+KopiLua - Reliable but slower";
this.rbKopiLua.Text = "NLua+KopiLua - Slower but reliable";
//
// rbLuaInterface
//
this.rbLuaInterface.Name = "rbLuaInterface";
this.rbLuaInterface.Tag = BizHawk.Client.Common.ELuaEngine.LuaPlusLuaInterface;
this.rbLuaInterface.Text = "Lua+LuaInterface - Faster but memory leaks, use at your own risk!";
this.rbLuaInterface.Text = "Lua+LuaInterface";
//
// flpDialogButtons
//