From 6af1524cfec5a9e3cad6e1a8869897b1d53604fe Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 27 Dec 2025 17:13:25 +0100 Subject: [PATCH] Video: Add the graphics card before any coprocessor cards such as the 8514/a. --- src/video/vid_table.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/video/vid_table.c b/src/video/vid_table.c index 88cd6789e..3e637f158 100644 --- a/src/video/vid_table.c +++ b/src/video/vid_table.c @@ -389,6 +389,10 @@ video_reset(int card) void video_post_reset(void) { + /* Reset the graphics card (or do nothing if it was already done + by the machine's init function). */ + video_reset(gfxcard[0]); + int ibm8514_has_vga = 0; if (gfxcard[0] == VID_INTERNAL) ibm8514_has_vga = (video_get_type_monitor(0) == VIDEO_FLAG_TYPE_8514); @@ -408,9 +412,6 @@ video_post_reset(void) if (da2_standalone_enabled) da2_device_add(); - /* Reset the graphics card (or do nothing if it was already done - by the machine's init function). */ - video_reset(gfxcard[0]); } void