Ram watch - clear on screen watches when doing fast updates, fixes #2379
This commit is contained in:
parent
be98f272f2
commit
76c97e49e7
|
@ -12,6 +12,7 @@ using BizHawk.Emulation.Common;
|
||||||
using BizHawk.Client.Common;
|
using BizHawk.Client.Common;
|
||||||
using BizHawk.Client.EmuHawk.Properties;
|
using BizHawk.Client.EmuHawk.Properties;
|
||||||
using BizHawk.Client.EmuHawk.ToolExtensions;
|
using BizHawk.Client.EmuHawk.ToolExtensions;
|
||||||
|
using BizHawk.Client.EmuHawk.Filters;
|
||||||
|
|
||||||
namespace BizHawk.Client.EmuHawk
|
namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
|
@ -311,6 +312,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
if (Config.DisplayRamWatch)
|
if (Config.DisplayRamWatch)
|
||||||
{
|
{
|
||||||
|
GlobalWin.OSD.ClearRamWatches();
|
||||||
for (var i = 0; i < _watches.Count; i++)
|
for (var i = 0; i < _watches.Count; i++)
|
||||||
{
|
{
|
||||||
var frozen = !_watches[i].IsSeparator && MainForm.CheatList.IsActive(_watches[i].Domain, _watches[i].Address);
|
var frozen = !_watches[i].IsSeparator && MainForm.CheatList.IsActive(_watches[i].Domain, _watches[i].Address);
|
||||||
|
|
Loading…
Reference in New Issue