summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/pps4/pps4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/pps4/pps4.cpp')
-rw-r--r--src/devices/cpu/pps4/pps4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/pps4/pps4.cpp b/src/devices/cpu/pps4/pps4.cpp
index aaf83860407..fbf2f3a27ea 100644
--- a/src/devices/cpu/pps4/pps4.cpp
+++ b/src/devices/cpu/pps4/pps4.cpp
@@ -252,7 +252,7 @@ void pps4_device::iADC()
*/
void pps4_device::iADSK()
{
- m_A = m_A + M() + m_C; // This fixes the diagnostic test button, same as pinmame. It means ADSK and ADCSK are the same.
+ m_A = m_A + M();
//m_A += M();
m_C = (m_A > 15) ? 1 : 0;
m_Skip = m_C;