mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Valtteri Koskivuori <vkoskiv@gmail.com>
|
|
Date: Sat, 17 Apr 2021 08:30:03 +0000
|
|
Subject: [PATCH] Replace the micro symbol with a 'u'
|
|
|
|
Co-Authored-By: Linus Groh <mail@linusgroh.de>
|
|
Co-Authored-By: Valtteri Koskivuori <vkoskiv@gmail.com>
|
|
---
|
|
src/renderer/renderer.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/renderer/renderer.c b/src/renderer/renderer.c
|
|
index fe0e44e..6e5e20f 100644
|
|
--- a/src/renderer/renderer.c
|
|
+++ b/src/renderer/renderer.c
|
|
@@ -146,7 +146,7 @@ struct texture *renderFrame(struct renderer *r) {
|
|
float sps = (1000000.0f / usPerRay) * (r->prefs.threadCount + remoteThreads);
|
|
char rem[64];
|
|
smartTime((msecTillFinished) / (r->prefs.threadCount + remoteThreads), rem);
|
|
- logr(info, "[%s%.0f%%%s] μs/path: %.02f, etf: %s, %.02lfMs/s %s \r",
|
|
+ logr(info, "[%s%.0f%%%s] us/path: %.02f, etf: %s, %.02lfMs/s %s \r",
|
|
KBLU,
|
|
interactive ? ((float)r->state.finishedPasses / (float)r->prefs.sampleCount) * 100.0f :
|
|
((float)r->state.finishedTileCount / (float)r->state.tileCount) * 100.0f,
|