Hide Frame Count on Null Emulator.

This commit is contained in:
hegyak 2014-12-16 04:31:07 +00:00
parent 98cf92a665
commit 9dea7cf0b0
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
public void DrawScreenInfo(IBlitter g)
{
if (Global.Config.DisplayFrameCounter)
if (Global.Config.DisplayFrameCounter && !Global.Game.IsNullInstance)
{
string message = MakeFrameCounter();
float x = GetX(g, Global.Config.DispFrameCx, Global.Config.DispFrameanchor, message);