Remove redundant `Config.Ti83AutoloadKeyPad`
This commit is contained in:
parent
cefd370643
commit
af78507bc7
|
@ -296,9 +296,6 @@ namespace BizHawk.Client.Common
|
||||||
public bool PlayMovieIncludeSubDir { get; set; }
|
public bool PlayMovieIncludeSubDir { get; set; }
|
||||||
public bool PlayMovieMatchHash { get; set; } = true;
|
public bool PlayMovieMatchHash { get; set; } = true;
|
||||||
|
|
||||||
// TI83
|
|
||||||
public bool Ti83AutoloadKeyPad { get; set; } = true;
|
|
||||||
|
|
||||||
public BindingCollection HotkeyBindings { get; set; } = new BindingCollection();
|
public BindingCollection HotkeyBindings { get; set; } = new BindingCollection();
|
||||||
|
|
||||||
// Analog Hotkey values
|
// Analog Hotkey values
|
||||||
|
|
|
@ -234,7 +234,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
this.KeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
this.KeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
||||||
this.LoadTIFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
this.LoadTIFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
||||||
this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
|
this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
|
||||||
this.AutoloadKeypadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
|
||||||
this.paletteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
this.paletteToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
||||||
this.A7800SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
this.A7800SubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
||||||
this.A7800ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
this.A7800ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
|
||||||
|
@ -1564,10 +1563,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
this.KeypadMenuItem,
|
this.KeypadMenuItem,
|
||||||
this.LoadTIFileMenuItem,
|
this.LoadTIFileMenuItem,
|
||||||
this.toolStripSeparator13,
|
this.toolStripSeparator13,
|
||||||
this.AutoloadKeypadMenuItem,
|
|
||||||
this.paletteToolStripMenuItem});
|
this.paletteToolStripMenuItem});
|
||||||
this.TI83SubMenu.Text = "TI83";
|
this.TI83SubMenu.Text = "TI83";
|
||||||
this.TI83SubMenu.DropDownOpened += new System.EventHandler(this.Ti83SubMenu_DropDownOpened);
|
|
||||||
//
|
//
|
||||||
// KeypadMenuItem
|
// KeypadMenuItem
|
||||||
//
|
//
|
||||||
|
@ -1579,13 +1576,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
this.LoadTIFileMenuItem.Text = "Load TI-83 File...";
|
this.LoadTIFileMenuItem.Text = "Load TI-83 File...";
|
||||||
this.LoadTIFileMenuItem.Click += new System.EventHandler(this.Ti83LoadTIFileMenuItem_Click);
|
this.LoadTIFileMenuItem.Click += new System.EventHandler(this.Ti83LoadTIFileMenuItem_Click);
|
||||||
//
|
//
|
||||||
// AutoloadKeypadMenuItem
|
|
||||||
//
|
|
||||||
this.AutoloadKeypadMenuItem.Checked = true;
|
|
||||||
this.AutoloadKeypadMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
||||||
this.AutoloadKeypadMenuItem.Text = "Autoload Keypad";
|
|
||||||
this.AutoloadKeypadMenuItem.Click += new System.EventHandler(this.AutoloadKeypadMenuItem_Click);
|
|
||||||
//
|
|
||||||
// paletteToolStripMenuItem
|
// paletteToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.paletteToolStripMenuItem.Text = "Palette...";
|
this.paletteToolStripMenuItem.Text = "Palette...";
|
||||||
|
@ -2534,7 +2524,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
private BizHawk.WinForms.Controls.StatusLabelEx EmuStatus;
|
private BizHawk.WinForms.Controls.StatusLabelEx EmuStatus;
|
||||||
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MessagesMenuItem;
|
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MessagesMenuItem;
|
||||||
private BizHawk.WinForms.Controls.ToolStripMenuItemEx TI83SubMenu;
|
private BizHawk.WinForms.Controls.ToolStripMenuItemEx TI83SubMenu;
|
||||||
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoloadKeypadMenuItem;
|
|
||||||
private BizHawk.WinForms.Controls.ToolStripMenuItemEx KeypadMenuItem;
|
private BizHawk.WinForms.Controls.ToolStripMenuItemEx KeypadMenuItem;
|
||||||
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator13;
|
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator13;
|
||||||
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PathsMenuItem;
|
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PathsMenuItem;
|
||||||
|
|
|
@ -1464,21 +1464,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Tools.Load<BarcodeEntry>();
|
Tools.Load<BarcodeEntry>();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Ti83SubMenu_DropDownOpened(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
AutoloadKeypadMenuItem.Checked = Config.Ti83AutoloadKeyPad;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Ti83KeypadMenuItem_Click(object sender, EventArgs e)
|
private void Ti83KeypadMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Tools.Load<TI83KeyPad>();
|
Tools.Load<TI83KeyPad>();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AutoloadKeypadMenuItem_Click(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
Config.Ti83AutoloadKeyPad ^= true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Ti83LoadTIFileMenuItem_Click(object sender, EventArgs e)
|
private void Ti83LoadTIFileMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (Emulator is TI83 ti83)
|
if (Emulator is TI83 ti83)
|
||||||
|
@ -2477,11 +2467,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void MainForm_Shown(object sender, EventArgs e)
|
private void MainForm_Shown(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (Emulator is TI83Common && Config.Ti83AutoloadKeyPad)
|
|
||||||
{
|
|
||||||
Tools.Load<TI83KeyPad>();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Config.RecentWatches.AutoLoad)
|
if (Config.RecentWatches.AutoLoad)
|
||||||
{
|
{
|
||||||
Tools.LoadRamWatch(!Config.DisplayRamWatch);
|
Tools.LoadRamWatch(!Config.DisplayRamWatch);
|
||||||
|
|
Loading…
Reference in New Issue