Fix N64 (Ares64) system menu having a blank space on Mono

This commit is contained in:
YoshiRulz 2023-04-09 05:34:19 +10:00
parent 4ea80410b8
commit 45ab749caf
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 9 additions and 4 deletions

View File

@ -270,6 +270,7 @@ namespace BizHawk.Client.EmuHawk
this.N64ControllerSettingsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator23 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.N64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Ares64CircularAnalogRangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MupenStyleLagMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.N64ExpansionSlotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.GBLSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
@ -1776,7 +1777,7 @@ namespace BizHawk.Client.EmuHawk
//
this.Ares64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.Ares64SettingsMenuItem,
this.N64CircularAnalogRangeMenuItem});
this.Ares64CircularAnalogRangeMenuItem});
this.Ares64SubMenu.Text = "N64";
this.Ares64SubMenu.DropDownOpened += new System.EventHandler(this.Ares64SubMenu_DropDownOpened);
//
@ -1785,6 +1786,11 @@ namespace BizHawk.Client.EmuHawk
this.Ares64SettingsMenuItem.Text = "Settings...";
this.Ares64SettingsMenuItem.Click += new System.EventHandler(this.Ares64SettingsMenuItem_Click);
//
// Ares64CircularAnalogRangeMenuItem
//
this.Ares64CircularAnalogRangeMenuItem.Text = "Circular Analog Range";
this.Ares64CircularAnalogRangeMenuItem.Click += new System.EventHandler(this.N64CircularAnalogRangeMenuItem_Click);
//
// GBLSubMenu
//
this.GBLSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -2708,6 +2714,7 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator22;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator23;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx N64CircularAnalogRangeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Ares64CircularAnalogRangeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx paletteToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ProfilesMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SynclessRecordingMenuItem;

View File

@ -1840,9 +1840,7 @@ namespace BizHawk.Client.EmuHawk
}
private void Ares64SubMenu_DropDownOpened(object sender, EventArgs e)
{
N64CircularAnalogRangeMenuItem.Checked = Config.N64UseCircularAnalogConstraint;
}
=> Ares64CircularAnalogRangeMenuItem.Checked = Config.N64UseCircularAnalogConstraint;
private void Ares64SettingsMenuItem_Click(object sender, EventArgs e)
=> OpenGenericCoreConfigFor<Ares64>(CoreNames.Ares64 + " Settings");