Skip to content

Commit 3ba5c4b

Browse files
committed
fixed fps counter display positioning
Signed-off-by: Wojciech Czerski <[email protected]>
1 parent a8b8a45 commit 3ba5c4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gems/FPSProfiler/Code/Source/Clients/FPSProfilerComponent.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ namespace FPSProfiler
563563
debugDisplay->SetColor(AZ::Colors::Red);
564564
debugDisplay->SetAlpha(1.0f);
565565

566-
AZStd::string debugText = AZStd::string::format("Profiler | FPS: %.2f", m_currentFps);
567-
debugDisplay->Draw2dTextLabel(10, 10, 1.0f, debugText.c_str(), true);
566+
AZStd::string debugText = AZStd::string::format("FPS: %.2f", m_currentFps);
567+
debugDisplay->Draw2dTextLabel(100, 50, 1.0f, debugText.c_str(), true);
568568
}
569569
} // namespace FPSProfiler

0 commit comments

Comments
 (0)