From fe74d5c47bf582fe58307962660ec0d2a0a21a29 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 6 Nov 2017 17:29:06 -0500 Subject: [PATCH] v9938: Bury this inaccurate kludge for good (nw) --- src/devices/video/v9938.cpp | 19 ------------------- src/devices/video/v9938.h | 1 - 2 files changed, 20 deletions(-) diff --git a/src/devices/video/v9938.cpp b/src/devices/video/v9938.cpp index ef202e914d4..468cc3900db 100644 --- a/src/devices/video/v9938.cpp +++ b/src/devices/video/v9938.cpp @@ -240,25 +240,6 @@ void v99x8_device::configure_pal_ntsc() } -#ifdef UNUSED_FUNCTION -/* - Not really right... won't work with sprites in graphics 7 - and with palette updated mid-screen -*/ -pen_t v99x8_device::get_transpen() const -{ - if (m_mode == V9938_MODE_GRAPHIC7) - { - return pen256(0); - } - else - { - return pen16(0); - } -} -#endif - - /* Driver-specific function: update the vdp mouse state */ diff --git a/src/devices/video/v9938.h b/src/devices/video/v9938.h index deb656939a9..7644cd724b0 100644 --- a/src/devices/video/v9938.h +++ b/src/devices/video/v9938.h @@ -76,7 +76,6 @@ class v99x8_device : public device_t, { public: template devcb_base &set_interrupt_callback(Object &&irq) { return m_int_callback.set_callback(std::forward(irq)); } - //pen_t get_transpen() const; bitmap_rgb32 &get_bitmap() { return m_bitmap; } void update_mouse_state(int mx_delta, int my_delta, int button_state);