Debugger: Fixed memory viewer header/data overlap
This commit is contained in:
parent
ab9699207d
commit
2bd2932d43
1 changed files with 1 additions and 1 deletions
|
@ -813,7 +813,7 @@ namespace Mesen.GUI.Debugger
|
|||
}
|
||||
|
||||
currentLine = this.ScrollPosition;
|
||||
positionY = 0;
|
||||
positionY = string.IsNullOrWhiteSpace(this._header) ? 0 : lineHeight;
|
||||
while(positionY < rect.Bottom && currentLine < _contents.Length) {
|
||||
this.DrawMargin(pe.Graphics, currentLine, marginLeft, positionY, lineHeight);
|
||||
positionY += lineHeight;
|
||||
|
|
Loading…
Add table
Reference in a new issue