From b0b1159780311c7c8ca9a9d41d11794e91e8895c Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Fri, 30 May 2025 18:25:14 -0400 Subject: pke: remove bucketed-array + various cleanups --- editor/editor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editor') 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(); } -- cgit v1.2.3