Update ext. tools to master

HelloWorld needed watch changes from 593474b73, AutoGenConfig needed ApiHawk
impl move from 3609037be
This commit is contained in:
YoshiRulz 2020-06-02 16:27:02 +10:00
parent cf7aabba35
commit b8655d880c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -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}";