Fixed lock up when system time jumps backwards

Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
Rob Pilling 2013-06-19 21:24:01 +01:00 committed by Christoph Lohmann
parent 0f6942cdf6
commit 489982d4b8
1 changed files with 5 additions and 2 deletions

7
st.c
View File

@ -3687,6 +3687,8 @@ run(void) {
gettimeofday(&last, NULL);
for(xev = actionfps;;) {
long deltatime;
FD_ZERO(&rfd);
FD_SET(cmdfd, &rfd);
FD_SET(xfd, &rfd);
@ -3720,8 +3722,9 @@ run(void) {
gettimeofday(&lastblink, NULL);
dodraw = 1;
}
if(TIMEDIFF(now, last) \
> (xev? (1000/xfps) : (1000/actionfps))) {
deltatime = TIMEDIFF(now, last);
if(deltatime > (xev? (1000/xfps) : (1000/actionfps))
|| deltatime < 0) {
dodraw = 1;
last = now;
}