summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/i8244.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-01-05 10:47:21 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-01-05 10:47:28 -0500
commitaa45e908bbf1c6ac8141b1990500817699888b59 (patch)
tree9fc8ca6cd091b585343f89a816f2a73460ae79fb /src/devices/video/i8244.h
parentc25b98226d633149162fbf99ea06919646acb9b6 (diff)
Privatize m_screen and other variables of device_video_interface (nw)
Diffstat (limited to 'src/devices/video/i8244.h')
-rw-r--r--src/devices/video/i8244.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/video/i8244.h b/src/devices/video/i8244.h
index a67652fd1e4..543712883e3 100644
--- a/src/devices/video/i8244.h
+++ b/src/devices/video/i8244.h
@@ -50,7 +50,6 @@ public:
i8244_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// static configuration helpers
- static void set_screen_tag(device_t &device, const char *screen_tag) { downcast<i8244_device &>(device).m_screen_tag = screen_tag; }
template <class Object> static devcb_base &set_irq_cb(device_t &device, Object &&cb) { return downcast<i8244_device &>(device).m_irq_func.set_callback(std::forward<Object>(cb)); }
template <class Object> static devcb_base &set_postprocess_cb(device_t &device, Object &&cb) { return downcast<i8244_device &>(device).m_postprocess_func.set_callback(std::forward<Object>(cb)); }