From ef4a99cf2a31b079b825e78513021406c3d0bb8a Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 30 Oct 2022 17:11:29 +0100 Subject: [PATCH] WYSE Wy700. --- src/video/vid_wy700.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video/vid_wy700.c b/src/video/vid_wy700.c index 2478a5089..e492523db 100644 --- a/src/video/vid_wy700.c +++ b/src/video/vid_wy700.c @@ -785,6 +785,7 @@ wy700_poll(void *p) break; } } + video_process_8(WY700_XSIZE, wy700->displine); wy700->displine++; /* Hardcode a fixed refresh rate and VSYNC timing */ if (wy700->displine == 800) /* Start of VSYNC */ @@ -820,7 +821,7 @@ wy700_poll(void *p) if (video_force_resize_get()) video_force_resize_set(0); } - video_blit_memtoscreen_8(0, 0, xsize, ysize); + video_blit_memtoscreen(0, 0, xsize, ysize); frames++; /* Fixed 1280x800 resolution */