Debugger - fix display of registers when register setting isn't available

This commit is contained in:
adelikat 2014-12-23 00:58:21 +00:00
parent 0f97dbb017
commit 2a771791d0
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ namespace BizHawk.Client.EmuHawk
this.Controls.Add(new Label
{
Name = register.Key,
Text = register.Value.ToString(),
Text = register.Value.Value.ToString(),
Width = 45,
Location = new Point(40, y)
});