Debugger - remove defaultWidth/Height stuff that isn't used now

This commit is contained in:
adelikat 2014-12-22 23:58:21 +00:00
parent 67d03c12c7
commit 1efd1454c2
1 changed files with 0 additions and 7 deletions

View File

@ -16,9 +16,6 @@ namespace BizHawk.Client.EmuHawk
[ToolAttributes(released: false)]
public partial class GenericDebugger : Form, IToolFormAutoConfig, IControlMainform
{
private int _defaultWidth;
private int _defaultHeight;
public GenericDebugger()
{
InitializeComponent();
@ -32,10 +29,6 @@ namespace BizHawk.Client.EmuHawk
private void GenericDebugger_Load(object sender, EventArgs e)
{
DisassemblerView.ItemCount = BusMaxValue + 1;
_defaultWidth = Size.Width;
_defaultHeight = Size.Height;
EngageDebugger();
}