From 34cb0a7630e2d5d747b3c768646ed953ca081b3d Mon Sep 17 00:00:00 2001 From: arbee Date: Thu, 1 Aug 2024 23:33:33 -0400 Subject: nubus/nubus_specpdq.cpp: Adjust the drawing offset to match the new CRTC parameter calculation. [R. Belmont] --- src/devices/bus/nubus/nubus_specpdq.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/nubus/nubus_specpdq.cpp b/src/devices/bus/nubus/nubus_specpdq.cpp index 24dee144ce6..f6903b6d21e 100644 --- a/src/devices/bus/nubus/nubus_specpdq.cpp +++ b/src/devices/bus/nubus/nubus_specpdq.cpp @@ -38,7 +38,8 @@ #include -//#define VERBOSE 1 +#define VERBOSE 1 +#define LOG_OUTPUT_FUNC osd_printf_info #include "logmacro.h" @@ -347,7 +348,7 @@ uint32_t nubus_specpdq_device::screen_update(screen_device &screen, bitmap_rgb32 { auto const screenbase = util::big_endian_cast(&m_vram[0]) + 0x9000; - int const hstart = m_crtc.h_start(16); + int const hstart = (m_crtc.h_start(1) + 3) << 4; int const width = m_crtc.h_active(16); int const vstart = m_crtc.v_start(); int const vend = m_crtc.v_end(); -- cgit v1.2.3