summaryrefslogtreecommitdiffhomepage
path: root/main
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-05-02 21:43:13 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-05-02 22:54:16 +0200
commita108e12c505ab6d6a5577b6fb39166e049271221 (patch)
treef335aa190a97f47dd91c7da6ff5af0a9d372a398 /main
parent518efccab147cae5b670c14ea1fc7b477f696a09 (diff)
compat/assert: reduce executable size
Diffstat (limited to 'main')
-rw-r--r--main/draw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/draw.cpp b/main/draw.cpp
index e5fb9e69..802a4e9d 100644
--- a/main/draw.cpp
+++ b/main/draw.cpp
@@ -36,7 +36,7 @@ void main_impl::do_update(const Ns& dtʹ)
value = secs;
#endif
if (secs > 35e-3f /* && !dt_expected.do_sleep */) [[likely]]
- fm_debug("%zu frame took %.2f milliseconds", bad_frame_counter++, (double)(secs*1e3));
+ fm_debug("%zu frame took %.2f milliseconds", bad_frame_counter++, (double)secs*1e3);
}
else
swapBuffers();