diff options
author | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-04-15 08:11:47 +0200 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-04-15 08:11:47 +0200 |
commit | ebb6e03201ce0e5a00be7cff2e365ad3d6cb7195 (patch) | |
tree | c0de44bc36de376bc18e88ba3bd42551bbd29546 /st.c | |
parent | 3cb80840dbf9add2b5f9c26da9650da39e34906d (diff) | |
parent | f27b44b7c271bda4ad3a0c4043bb709e0a4e4fbb (diff) | |
download | st-ebb6e03201ce0e5a00be7cff2e365ad3d6cb7195.tar.gz st-ebb6e03201ce0e5a00be7cff2e365ad3d6cb7195.tar.bz2 |
Merge remote-tracking branch 'origin/master' into omaster
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; @@ -3773,7 +3773,7 @@ run(void) { if(blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) { tsetdirtattr(ATTR_BLINK); term.mode ^= MODE_BLINK; - gettimeofday(&lastblink, NULL); + lastblink = now; dodraw = 1; } deltatime = TIMEDIFF(now, last); |