From 9e4acc08b81a1fc4ae4a48d1263e16c9674cfc29 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Wed, 18 Nov 2020 13:33:10 +0100 Subject: [PATCH] Fixed busy status on the S3 family of chips using the fifo. --- src/video/vid_s3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_s3.c b/src/video/vid_s3.c index 85aaf22d9..704d193ae 100644 --- a/src/video/vid_s3.c +++ b/src/video/vid_s3.c @@ -2664,7 +2664,7 @@ s3_accel_in(uint16_t port, void *p) wake_fifo_thread(s3); temp = 0; if ((s3->chip >= S3_86C928) && s3_enable_fifo(s3)) { - if (!FIFO_EMPTY || s3->busy || s3->force_busy) + if (!FIFO_EMPTY || s3->force_busy) temp |= 0x02; /*Hardware busy*/ else temp |= 0x04; /*FIFO empty*/