fix recent hex editor regression (would not load)

This commit is contained in:
goyuken 2014-12-17 02:44:49 +00:00
parent eb4aa94546
commit 215e155b47
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ namespace BizHawk.Client.EmuHawk
public partial class HexEditor : Form, IToolForm
{
[RequiredService]
private MemoryDomainList MemoryDomains { get; set; }
private IMemoryDomains MemoryDomainSource { get; set; }
private MemoryDomainList MemoryDomains { get { return MemoryDomainSource.MemoryDomains; } }
private bool fontSizeSet = false;
private int fontWidth;