summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2021-07-13 23:21:25 +0900
committer GitHub <noreply@github.com>2021-07-13 23:21:25 +0900
commita63e52928d50243d1eb4d549974ef57f68f0d984 (patch)
treeaf89bbbabd96f701ef39f8bdcccaf529c074c45e
parent1d7e9c02842e9ea9126ccb9008ab42eecd166c5b (diff)
joypad2.cpp: Fix pin naming
-rw-r--r--src/devices/bus/pce_ctrl/joypad2.cpp2
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);
}
}