improve some if checks in OSDManager
This commit is contained in:
parent
5ef2a4d7e6
commit
10c62764ba
|
@ -258,7 +258,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
/// </summary>
|
||||
public void DrawScreenInfo(IBlitter g)
|
||||
{
|
||||
if (GlobalWin.Config.DisplayFrameCounter && !GlobalWin.Game.IsNullInstance())
|
||||
if (GlobalWin.Config.DisplayFrameCounter && !GlobalWin.Emulator.IsNull())
|
||||
{
|
||||
string message = MakeFrameCounter();
|
||||
var point = GetCoordinates(g, GlobalWin.Config.FrameCounter, message);
|
||||
|
@ -270,7 +270,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}
|
||||
|
||||
if (GlobalWin.Config.DisplayInput && !GlobalWin.Game.IsNullInstance())
|
||||
if (GlobalWin.Config.DisplayInput)
|
||||
{
|
||||
if (GlobalWin.MovieSession.Movie.IsPlaying()
|
||||
|| (GlobalWin.MovieSession.Movie.IsFinished() && GlobalWin.Emulator.Frame == GlobalWin.MovieSession.Movie.InputLogLength)) // Account for the last frame of the movie, the movie state is immediately "Finished" here but we still want to show the input
|
||||
|
|
Loading…
Reference in New Issue