1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Only showing FPS in dev mode

This commit is contained in:
Brian Fiete 2019-09-16 09:34:09 -07:00
parent f9ef95cb1c
commit 20d5835ff3

View file

@ -358,6 +358,8 @@ namespace IDE.ui
else
mStatusBoxUpdateCnt = -1;
if (gApp.mSettings.mEnableDevMode)
{
g.DrawString(StackStringFormat!("FPS: {0}", gApp.mLastFPS), GS!(4), 0);
String resolveStr = scope String();
@ -409,4 +411,5 @@ namespace IDE.ui
g.DrawString(resolveStr, GS!(100), 0);
}
}
}
}