diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-06-15 02:55:59 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-06-15 02:55:59 +0200 |
| commit | a6da655838b0c109df8192221445590399ed9f50 (patch) | |
| tree | 1900cd81b2d66ad8b48e27c698f982c57397de88 | |
| parent | ae277ee25856e5f49d5651dd670c7c12d8116c1c (diff) | |
Daemon UI shows steps/s in hex format
| -rw-r--r-- | ui/daemon/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
