put info in correct place
This commit is contained in:
@ -108,6 +108,15 @@ static void Run()
|
|||||||
|
|
||||||
g_view->Command_PreDraw();
|
g_view->Command_PreDraw();
|
||||||
|
|
||||||
|
if (g_settings->pause)
|
||||||
|
{
|
||||||
|
g_draw->DrawString(b3Color_white, "*PAUSED*");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
g_draw->DrawString(b3Color_white, "*PLAYING*");
|
||||||
|
}
|
||||||
|
|
||||||
if (g_settings->drawProfile)
|
if (g_settings->drawProfile)
|
||||||
{
|
{
|
||||||
const b3Array<ProfilerRecord>& records = g_profilerRecorder->GetRecords();
|
const b3Array<ProfilerRecord>& records = g_profilerRecorder->GetRecords();
|
||||||
|
@ -78,15 +78,6 @@ void Model::Command_Step()
|
|||||||
Action_DefaultCamera();
|
Action_DefaultCamera();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_settings.pause)
|
|
||||||
{
|
|
||||||
m_draw.DrawString(b3Color_white, "*PAUSED*");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
m_draw.DrawString(b3Color_white, "*PLAYING*");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_settings.drawGrid)
|
if (m_settings.drawGrid)
|
||||||
{
|
{
|
||||||
b3Color color(0.2f, 0.2f, 0.2f, 1.0f);
|
b3Color color(0.2f, 0.2f, 0.2f, 1.0f);
|
||||||
|
Reference in New Issue
Block a user