Remove now-unused prop `IMainFormForTools.OnPauseChanged`

fixes 7b904b171
This commit is contained in:
YoshiRulz 2025-01-03 02:23:31 +10:00
parent 5f36cacfd2
commit 05fd64a5e6
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 0 additions and 6 deletions

View File

@ -40,9 +40,6 @@ namespace BizHawk.Client.EmuHawk
/// <remarks>only referenced from <see cref="PlaybackBox"/></remarks> /// <remarks>only referenced from <see cref="PlaybackBox"/></remarks>
bool PressRewind { get; set; } bool PressRewind { get; set; }
/// <remarks>only referenced from <see cref="GenericDebugger"/></remarks>
event Action<bool> OnPauseChanged;
BitmapBuffer CaptureOSD(); BitmapBuffer CaptureOSD();
/// <remarks>only referenced from <see cref="TAStudio"/></remarks> /// <remarks>only referenced from <see cref="TAStudio"/></remarks>

View File

@ -958,14 +958,11 @@ namespace BizHawk.Client.EmuHawk
} }
_emulatorPaused = value; _emulatorPaused = value;
OnPauseChanged?.Invoke(_emulatorPaused);
} }
} }
public bool BlockFrameAdvance { get; set; } public bool BlockFrameAdvance { get; set; }
public event Action<bool> OnPauseChanged;
public string CurrentlyOpenRom { get; private set; } // todo - delete me and use only args instead public string CurrentlyOpenRom { get; private set; } // todo - delete me and use only args instead
public LoadRomArgs CurrentlyOpenRomArgs { get; private set; } public LoadRomArgs CurrentlyOpenRomArgs { get; private set; }
public bool PauseAvi { get; set; } public bool PauseAvi { get; set; }