Remove unused prop from a MainForm interface

fixes 62537118a
This commit is contained in:
YoshiRulz 2020-07-31 16:19:41 +10:00
parent b77cd9a7bf
commit 00b67f4156
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 1 additions and 4 deletions

View File

@ -36,9 +36,6 @@ namespace BizHawk.Client.EmuHawk
/// <remarks>only referenced from <see cref="EmuClientApi"/></remarks>
bool PauseAvi { set; }
/// <remarks>only referenced from <see cref="EmuClientApi"/></remarks>
PresentationPanel PresentationPanel { get; }
void AddOnScreenMessage(string message);
/// <remarks>only referenced from <see cref="EmuClientApi"/></remarks>

View File

@ -1552,7 +1552,7 @@ namespace BizHawk.Client.EmuHawk
// input state which has been destined for client hotkey consumption are colesced here
private readonly InputCoalescer _hotkeyCoalescer = new InputCoalescer();
public PresentationPanel PresentationPanel { get; }
private readonly PresentationPanel PresentationPanel;
// countdown for saveram autoflushing
public int AutoFlushSaveRamIn { get; set; }