diff options
author | 2021-07-13 23:21:25 +0900 | |
---|---|---|
committer | 2021-07-13 23:21:25 +0900 | |
commit | a63e52928d50243d1eb4d549974ef57f68f0d984 (patch) | |
tree | af89bbbabd96f701ef39f8bdcccaf529c074c45e | |
parent | 1d7e9c02842e9ea9126ccb9008ab42eecd166c5b (diff) |
joypad2.cpp: Fix pin naming
-rw-r--r-- | src/devices/bus/pce_ctrl/joypad2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |