mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-27 01:40:16 -05:00
It's Hz, not HZ
This commit is contained in:
parent
f20b08db3d
commit
6d5d3a8d7d
1 changed files with 2 additions and 2 deletions
4
main.c
4
main.c
|
|
@ -741,7 +741,7 @@ main(int argc, char *const *argv)
|
||||||
}
|
}
|
||||||
|
|
||||||
tll_foreach(term.wl.monitors, it) {
|
tll_foreach(term.wl.monitors, it) {
|
||||||
LOG_INFO("%s: %dx%d+%dx%d (scale=%d, refresh=%.2fHZ)",
|
LOG_INFO("%s: %dx%d+%dx%d (scale=%d, refresh=%.2fHz)",
|
||||||
it->item.name, it->item.width_px, it->item.height_px,
|
it->item.name, it->item.width_px, it->item.height_px,
|
||||||
it->item.x, it->item.y, it->item.scale, it->item.refresh);
|
it->item.x, it->item.y, it->item.scale, it->item.refresh);
|
||||||
}
|
}
|
||||||
|
|
@ -1037,7 +1037,7 @@ main(int argc, char *const *argv)
|
||||||
&(struct itimerspec){.it_value = {.tv_nsec = 1000000}},
|
&(struct itimerspec){.it_value = {.tv_nsec = 1000000}},
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
/* Second timeout - only reset when we render. Set to one frame (assuming 60HZ) */
|
/* Second timeout - only reset when we render. Set to one frame (assuming 60Hz) */
|
||||||
if (!timeout_is_armed) {
|
if (!timeout_is_armed) {
|
||||||
timerfd_settime(
|
timerfd_settime(
|
||||||
delay_render_timer_upper, 0,
|
delay_render_timer_upper, 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue