diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-05-30 18:25:14 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-05-30 18:25:14 -0400 |
| commit | b0b1159780311c7c8ca9a9d41d11794e91e8895c (patch) | |
| tree | 2b77fd6bfa7b5d07e8f3d96ea20e6e87bf3fa127 /editor | |
| parent | 150089e109bd982ef081201b308265c7dbfb3fd6 (diff) | |
pke: remove bucketed-array + various cleanups
Diffstat (limited to 'editor')
| -rw-r--r-- | editor/editor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor.cpp b/editor/editor.cpp index 03049bc..938f3ef 100644 --- a/editor/editor.cpp +++ b/editor/editor.cpp @@ -702,7 +702,8 @@ void RecordImGuiEditorWrapper() { } ImGuiIO &io = ImGui::GetIO(); - ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); + ImGui::Text("Application average %.03f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); + ImGui::Text("Application average %.03f ms/tick (%.1f TPS)", 1000.0f / pkeSettings.stats.tick_rate, pkeSettings.stats.tick_rate); ImGui::EndMenu(); } |
