summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2026-05-10 15:12:45 +0200
committer hap <happppp@users.noreply.github.com>2026-05-10 15:13:03 +0200
commite1e34159eb92109b86930676b81bf3d3f27810b4 (patch)
tree62cf8a1581483d9882d12967373a492156b2db9d /src/devices
parent4655e5d04a8cdae7fca01a349a536cc4a4bc53c1 (diff)
c219: revert d4d09850ed6ddaf556f0f38ccf1b2774a1bab0bd (0x40 was already assumed to be sign invert flag here)
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/sound/c140.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/c140.cpp b/src/devices/sound/c140.cpp
index a323ca20ccf..4c28f675d26 100644
--- a/src/devices/sound/c140.cpp
+++ b/src/devices/sound/c140.cpp
@@ -598,7 +598,7 @@ void c219_device::c219_w(offs_t offset, u8 data)
if ((offset & 0xf) == 0x5)
{
- if (data & 0x80 || (data & 0x40 && v->key))
+ if (data & 0x80)
{
const struct voice_registers *vreg = (struct voice_registers *) &m_REG[offset & 0x1f0];
v->key = 1;