Remove now-unused prop `IMainFormForTools.OnPauseChanged`
fixes 7b904b171
This commit is contained in:
parent
5f36cacfd2
commit
05fd64a5e6
|
@ -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>
|
||||||
|
|
|
@ -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; }
|
||||||
|
|
Loading…
Reference in New Issue