Some compilation fixes

This commit is contained in:
2026-04-29 22:46:30 +01:00
parent f628848127
commit 930ca0e553
2 changed files with 15 additions and 4 deletions

View File

@@ -30,12 +30,21 @@ namespace Desktop
public Form1()
{
InitializeComponent();
PopulateIncludedTapsMenu();
InitializeComponent();
this.DoubleBuffered = true;
this.ResizeRedraw = true;
}
InitializeEmulator();
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
// Double-check we aren't in the designer just to be paranoid
if (!this.DesignMode)
{
PopulateIncludedTapsMenu();
InitializeEmulator();
}
}
private void InitializeEmulator()