summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd44102.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd44102.h')
-rw-r--r--src/devices/video/hd44102.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/hd44102.h b/src/devices/video/hd44102.h
index c9746d417ec..a484ce77478 100644
--- a/src/devices/video/hd44102.h
+++ b/src/devices/video/hd44102.h
@@ -21,7 +21,7 @@
#define MCFG_HD44102_ADD(_tag, _screen_tag, _sx, _sy) \
MCFG_DEVICE_ADD(_tag, HD44102, 0) \
MCFG_VIDEO_SET_SCREEN(_screen_tag) \
- hd44102_device::static_set_offsets(*device, _sx, _sy);
+ downcast<hd44102_device &>(*device).set_offsets(_sx, _sy);
@@ -39,7 +39,7 @@ public:
hd44102_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// inline configuration helpers
- static void static_set_offsets(device_t &device, int sx, int sy);
+ void set_offsets(int sx, int sy) { m_sx = sx; m_sy = sy; }
DECLARE_READ8_MEMBER( read );
DECLARE_WRITE8_MEMBER( write );