summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/315_5313.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/315_5313.cpp')
-rw-r--r--src/devices/video/315_5313.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/315_5313.cpp b/src/devices/video/315_5313.cpp
index 106af73b740..6e6182854e7 100644
--- a/src/devices/video/315_5313.cpp
+++ b/src/devices/video/315_5313.cpp
@@ -918,8 +918,8 @@ WRITE16_MEMBER( sega315_5313_device::vdp_w )
{
// accessed by either segapsg_device or sn76496_device
sn76496_base_device *sn = machine().device<sn76496_base_device>(":snsnd");
- if (ACCESSING_BITS_0_7) sn->write(space, 0, data & 0xff);
- //if (ACCESSING_BITS_8_15) sn->write(space, 0, (data>>8) & 0xff);
+ if (ACCESSING_BITS_0_7) sn->write(data & 0xff);
+ //if (ACCESSING_BITS_8_15) sn->write((data>>8) & 0xff);
break;
}