PCETileViewer - remove unnecessary load event

This commit is contained in:
adelikat 2020-07-24 14:50:01 -05:00
parent 0ed95429cb
commit b0c76f28ca
2 changed files with 0 additions and 5 deletions

View File

@ -157,7 +157,6 @@ namespace BizHawk.Client.EmuHawk
this.MainMenuStrip = this.menuStrip1;
this.Name = "PceTileViewer";
this.Text = "Tile Viewer";
this.Load += new System.EventHandler(this.PceTileViewer_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PceTileViewer_KeyDown);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);

View File

@ -207,9 +207,5 @@ namespace BizHawk.Client.EmuHawk
{
bmpViewSP.SaveFile();
}
private void PceTileViewer_Load(object sender, EventArgs e)
{
}
}
}