summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd61603.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd61603.cpp')
-rw-r--r--src/devices/video/hd61603.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/devices/video/hd61603.cpp b/src/devices/video/hd61603.cpp
index 42fd0cbe8c1..92bdd006e5a 100644
--- a/src/devices/video/hd61603.cpp
+++ b/src/devices/video/hd61603.cpp
@@ -51,11 +51,6 @@ void hd61603_device::device_start()
// handlers
//-------------------------------------------------
-void hd61603_device::refresh_output()
-{
- m_write_segs(0, m_blank ? 0 : m_ram);
-}
-
void hd61603_device::data_w(u8 data)
{
// 1-byte nop command
@@ -96,6 +91,6 @@ void hd61603_device::data_w(u8 data)
break;
}
- refresh_output();
+ m_write_segs(0, m_blank ? 0 : m_ram);
}
}