summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gamegear/ggext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/gamegear/ggext.cpp')
-rw-r--r--src/devices/bus/gamegear/ggext.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/devices/bus/gamegear/ggext.cpp b/src/devices/bus/gamegear/ggext.cpp
index 86a8d1911a0..a886abe67f2 100644
--- a/src/devices/bus/gamegear/ggext.cpp
+++ b/src/devices/bus/gamegear/ggext.cpp
@@ -59,8 +59,7 @@ gg_ext_port_device::gg_ext_port_device(const machine_config &mconfig, const char
device_t(mconfig, GG_EXT_PORT, tag, owner, clock),
device_slot_interface(mconfig, *this),
m_device(nullptr),
- m_th_pin_handler(*this),
- m_pixel_handler(*this)
+ m_th_pin_handler(*this)
{
}
@@ -83,7 +82,6 @@ void gg_ext_port_device::device_start()
m_device = dynamic_cast<device_gg_ext_port_interface *>(get_card_device());
m_th_pin_handler.resolve_safe();
- m_pixel_handler.resolve_safe(0);
}
@@ -107,11 +105,6 @@ void gg_ext_port_device::th_pin_w(int state)
m_th_pin_handler(state);
}
-uint32_t gg_ext_port_device::pixel_r()
-{
- return m_pixel_handler();
-}
-
//-------------------------------------------------
// SLOT_INTERFACE( gg_ext_port_devices )