summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/crt9021.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/crt9021.cpp')
-rw-r--r--src/devices/video/crt9021.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/crt9021.cpp b/src/devices/video/crt9021.cpp
index 2ed5680559f..6f1bc8102e2 100644
--- a/src/devices/video/crt9021.cpp
+++ b/src/devices/video/crt9021.cpp
@@ -131,7 +131,7 @@ void crt9021_device::device_start()
// ld_sh_w - load/shift
//-------------------------------------------------
-WRITE_LINE_MEMBER( crt9021_device::ld_sh_w )
+void crt9021_device::ld_sh_w(int state)
{
LOG("CRT9021 LD/SH: %u\n", state);
@@ -171,7 +171,7 @@ WRITE_LINE_MEMBER( crt9021_device::ld_sh_w )
// vsync_w - vertical sync
//-------------------------------------------------
-WRITE_LINE_MEMBER( crt9021_device::vsync_w )
+void crt9021_device::vsync_w(int state)
{
LOG("CRT9021 VSYNC: %u\n", state);
}