Skip to content

Commit

Permalink
Remove now-unused prop IMainFormForTools.OnPauseChanged
Browse files Browse the repository at this point in the history
fixes 7b904b1
  • Loading branch information
YoshiRulz committed Jan 2, 2025
1 parent 5f36cac commit 05fd64a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/BizHawk.Client.EmuHawk/IMainFormForTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ public interface IMainFormForTools : IDialogController
/// <remarks>only referenced from <see cref="PlaybackBox"/></remarks>
bool PressRewind { get; set; }

/// <remarks>only referenced from <see cref="GenericDebugger"/></remarks>
event Action<bool> OnPauseChanged;

BitmapBuffer CaptureOSD();

/// <remarks>only referenced from <see cref="TAStudio"/></remarks>
Expand Down
3 changes: 0 additions & 3 deletions src/BizHawk.Client.EmuHawk/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -958,14 +958,11 @@ private set
}

_emulatorPaused = value;
OnPauseChanged?.Invoke(_emulatorPaused);
}
}

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 LoadRomArgs CurrentlyOpenRomArgs { get; private set; }
public bool PauseAvi { get; set; }
Expand Down

0 comments on commit 05fd64a

Please sign in to comment.