From a63e52928d50243d1eb4d549974ef57f68f0d984 Mon Sep 17 00:00:00 2001 From: cam900 Date: Tue, 13 Jul 2021 23:21:25 +0900 Subject: [PATCH] joypad2.cpp: Fix pin naming --- src/devices/bus/pce_ctrl/joypad2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/bus/pce_ctrl/joypad2.cpp b/src/devices/bus/pce_ctrl/joypad2.cpp index 5ce34fcc903..478141beaed 100644 --- a/src/devices/bus/pce_ctrl/joypad2.cpp +++ b/src/devices/bus/pce_ctrl/joypad2.cpp @@ -233,7 +233,7 @@ u8 pce_joypad2_turbo_device::buttons_r() } else // Slow { - if (BIT(m_counter, 2)) // OC pin from 74xx163 + if (BIT(m_counter, 2)) // QC pin from 74xx163 ret |= (1 << i); } }