ramwatch fix
This commit is contained in:
parent
d1580567dd
commit
78ea103114
|
@ -373,7 +373,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
var we = new WatchEditor
|
||||
{
|
||||
InitialLocation = this.ChildPointToScreen(WatchListView)
|
||||
InitialLocation = this.ChildPointToScreen(WatchListView),
|
||||
Core = _core
|
||||
};
|
||||
|
||||
we.SetWatch(_watches.Domain, SelectedWatches, duplicate ? WatchEditor.Mode.Duplicate : WatchEditor.Mode.Edit);
|
||||
|
@ -756,7 +757,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
var we = new WatchEditor
|
||||
{
|
||||
InitialLocation = this.ChildPointToScreen(WatchListView)
|
||||
InitialLocation = this.ChildPointToScreen(WatchListView),
|
||||
Core = _core
|
||||
};
|
||||
we.SetWatch(_watches.Domain);
|
||||
we.ShowHawkDialog();
|
||||
|
|
|
@ -14,7 +14,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
public enum Mode { New, Duplicate, Edit };
|
||||
|
||||
private readonly List<Watch> _watchList = new List<Watch>();
|
||||
private readonly IMemoryDomains Core;
|
||||
public IMemoryDomains Core { get; set; }
|
||||
|
||||
private Mode _mode = Mode.New;
|
||||
private bool _loading = true;
|
||||
|
@ -28,7 +28,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public WatchEditor()
|
||||
{
|
||||
Core = (IMemoryDomains)Global.Emulator;
|
||||
_changedDisplayType = false;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue