Update ext. tools to master
HelloWorld needed watch changes from593474b73
, AutoGenConfig needed ApiHawk impl move from3609037be
This commit is contained in:
parent
cf7aabba35
commit
b8655d880c
|
@ -5,6 +5,7 @@ using System.Linq;
|
|||
using System.Windows.Forms;
|
||||
|
||||
using BizHawk.Client.Common;
|
||||
using BizHawk.Client.EmuHawk;
|
||||
|
||||
using static BizHawk.Experiment.AutoGenConfig.ConfigEditorUIGenerators;
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ namespace HelloWorld
|
|||
|
||||
if (Global.Game.Name != "Null")
|
||||
{
|
||||
Watches.RefreshDomains(_memoryDomains);
|
||||
Watches.RefreshDomains(_memoryDomains, Global.Config.RamWatchDefinePrevious);
|
||||
label_Game.Text = $"You're playing {Global.Game.Name}";
|
||||
label_GameHash.Text = $"Hash: {Global.Game.Hash}";
|
||||
}
|
||||
|
@ -96,7 +96,7 @@ namespace HelloWorld
|
|||
{
|
||||
return;
|
||||
}
|
||||
Watches.UpdateValues();
|
||||
Watches.UpdateValues(Global.Config.RamWatchDefinePrevious);
|
||||
label_Watch1.Text = $"First watch ({Watches[0].AddressString}) current value: {Watches[0].ValueString}";
|
||||
label_Watch2.Text = $"Second watch ({Watches[1].AddressString}) current value: {Watches[1].ValueString}";
|
||||
label_Watch3.Text = $"Third watch ({Watches[2].AddressString}) current value: {Watches[2].ValueString}";
|
||||
|
|
Loading…
Reference in New Issue