JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Merge remote-tracking branch 'origin/master' into omaster
authorRoberto E. Vargas Caballero <k0ga@shike2.com>
Tue, 15 Apr 2014 06:11:47 +0000 (08:11 +0200)
committerRoberto E. Vargas Caballero <k0ga@shike2.com>
Tue, 15 Apr 2014 06:11:47 +0000 (08:11 +0200)
1  2 
st.c

diff --combined st.c
--- 1/st.c
--- 2/st.c
+++ b/st.c
@@@ -3089,7 -3089,7 +3089,7 @@@ xinit(void) 
        xresettitle();
        XMapWindow(xw.dpy, xw.win);
        xhints();
 -      XSync(xw.dpy, 0);
 +      XSync(xw.dpy, False);
  }
  
  void
@@@ -3737,8 -3737,8 +3737,8 @@@ run(void) 
        else
                cresize(xw.fw, xw.fh);
  
-       gettimeofday(&lastblink, NULL);
        gettimeofday(&last, NULL);
+       lastblink = last;
  
        for(xev = actionfps;;) {
                long deltatime;
                if(blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) {
                        tsetdirtattr(ATTR_BLINK);
                        term.mode ^= MODE_BLINK;
-                       gettimeofday(&lastblink, NULL);
+                       lastblink = now;
                        dodraw = 1;
                }
                deltatime = TIMEDIFF(now, last);