This commit is contained in:
andres.delikat 2011-08-21 22:26:02 +00:00
parent f22e9fb60d
commit 9ccb33a191
1 changed files with 3 additions and 3 deletions

View File

@ -183,14 +183,14 @@ namespace BizHawk.MultiClient
{ {
unchecked unchecked
{ {
Pen p = new Pen(Brushes.Black); //Pen p = new Pen(Brushes.Black);
row = 0; row = 0;
addr = 0; addr = 0;
StringBuilder rowStr = new StringBuilder(""); StringBuilder rowStr = new StringBuilder("");
addrOffset = (GetNumDigits(Domain.Size) % 4) * 9; addrOffset = (GetNumDigits(Domain.Size) % 4) * 9;
e.Graphics.DrawLine(p, this.Left + 38 + addrOffset, this.Top, this.Left + 38 + addrOffset, this.Bottom - 40); //e.Graphics.DrawLine(p, this.Left + 38 + addrOffset, this.Top, this.Left + 38 + addrOffset, this.Bottom - 40);
e.Graphics.DrawLine(p, this.Left, 34, this.Right - 16, 34); //e.Graphics.DrawLine(p, this.Left, 34, this.Right - 16, 34);
if (addressHighlighted >= 0 && IsVisible(addressHighlighted)) if (addressHighlighted >= 0 && IsVisible(addressHighlighted))
{ {