From a6da655838b0c109df8192221445590399ed9f50 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Mon, 15 Jun 2026 02:55:59 +0200 Subject: Daemon UI shows steps/s in hex format --- ui/daemon/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/daemon/ui.c b/ui/daemon/ui.c index 93f088f..2417788 100644 --- a/ui/daemon/ui.c +++ b/ui/daemon/ui.c @@ -28,7 +28,7 @@ void step_block(void) { float secs = (float)(end - beg) / (float)CLOCKS_PER_SEC; float steps_per_sec = (float)g_step_block / secs; - log_info("Simulator running on step %#lx @%.1f steps/s", g_steps, steps_per_sec); + log_info("Simulator running on step %#lx @%#lxf steps/s", g_steps, (int)steps_per_sec); } int main(void) { -- cgit v1.2.1