aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index f6e606b..0ae2c90 100644
--- a/st.c
+++ b/st.c
@@ -3182,7 +3182,6 @@ run(void) {
3182 } 3182 }
3183 3183
3184 gettimeofday(&now, NULL); 3184 gettimeofday(&now, NULL);
3185 /* usecs until (next) frame */
3186 drawtimeout.tv_sec = 0; 3185 drawtimeout.tv_sec = 0;
3187 drawtimeout.tv_usec = (1000/xfps) * 1000; 3186 drawtimeout.tv_usec = (1000/xfps) * 1000;
3188 tv = &drawtimeout; 3187 tv = &drawtimeout;
@@ -3193,7 +3192,8 @@ run(void) {
3193 if(FD_ISSET(xfd, &rfd)) 3192 if(FD_ISSET(xfd, &rfd))
3194 xev = actionfps; 3193 xev = actionfps;
3195 3194
3196 if(TIMEDIFF(now, last) > (xev ? (1000/xfps) : (1000/actionfps))) { 3195 if(TIMEDIFF(now, last) > \
3196 (xev ? (1000/xfps) : (1000/actionfps))) {
3197 while(XPending(xw.dpy)) { 3197 while(XPending(xw.dpy)) {
3198 XNextEvent(xw.dpy, &ev); 3198 XNextEvent(xw.dpy, &ev);
3199 if(XFilterEvent(&ev, None)) 3199 if(XFilterEvent(&ev, None))