This commit is contained in:
Kovid Goyal
2024-03-26 13:38:48 +05:30
parent bb45062ef6
commit 2009a20561
2 changed files with 2 additions and 2 deletions

2
glfw/init.c vendored
View File

@@ -208,7 +208,7 @@ _glfwDebug(const char *format, ...) {
{
va_list vl;
fprintf(stderr, "[%.4f] ", monotonic_t_to_s_double(glfwGetTime()));
fprintf(stderr, "[%.3f] ", monotonic_t_to_s_double(monotonic()));
va_start(vl, format);
vfprintf(stderr, format, vl);
va_end(vl);

View File

@@ -181,7 +181,7 @@ log_event(const char *format, ...) {
{
va_list vl;
fprintf(stderr, "[%.4f] ", monotonic_t_to_s_double(glfwGetTime()));
fprintf(stderr, "[%.3f] ", monotonic_t_to_s_double(monotonic()));
va_start(vl, format);
vfprintf(stderr, format, vl);
va_end(vl);