pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c27c731
)
Increment accuaracy in drawtime calculation
author
noname@inventati.org
<noname@inventati.org>
Sat, 18 Apr 2015 16:45:48 +0000
(18:45 +0200)
committer
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Mon, 20 Apr 2015 07:20:35 +0000
(09:20 +0200)
This way is a bit more accurate.
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
c7589f4
..
dcb80ca
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-3992,7
+3992,7
@@
run(void) {
clock_gettime(CLOCK_MONOTONIC, &now);
drawtimeout.tv_sec = 0;
- drawtimeout.tv_nsec =
(1000/xfps) * 1E6
;
+ drawtimeout.tv_nsec =
(1000 * 1E6)/ xfps
;
tv = &drawtimeout;
dodraw = 0;