v9938: Bury this inaccurate kludge for good (nw)

This commit is contained in:
AJR 2017-11-06 17:29:06 -05:00
parent 59af927112
commit fe74d5c47b
2 changed files with 0 additions and 20 deletions

View File

@ -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
*/

View File

@ -76,7 +76,6 @@ class v99x8_device : public device_t,
{
public:
template <class Object> devcb_base &set_interrupt_callback(Object &&irq) { return m_int_callback.set_callback(std::forward<Object>(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);