From cc44da26e58da5aca4c8f514070c93b3e7b482fa Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 30 Oct 2022 17:02:33 +0100 Subject: [PATCH] MDA. --- src/video/vid_mda.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/video/vid_mda.c b/src/video/vid_mda.c index d02670d6a..3c88c5ccd 100644 --- a/src/video/vid_mda.c +++ b/src/video/vid_mda.c @@ -163,6 +163,8 @@ mda_poll(void *p) buffer32->line[mda->displine][(x * 9) + c] ^= mdacols[attr][0][1]; } } + + video_process_8(mda->crtc[1] * 9, mda->displine); } mda->sc = oldsc; if (mda->vc == mda->crtc[7] && !mda->sc) { @@ -235,7 +237,7 @@ mda_poll(void *p) if (video_force_resize_get()) video_force_resize_set(0); } - video_blit_memtoscreen_8(0, mda->firstline, xsize, ysize); + video_blit_memtoscreen(0, mda->firstline, xsize, ysize); frames++; video_res_x = mda->crtc[1]; video_res_y = mda->crtc[6];