summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2021-07-13 10:31:34 -0400
committer GitHub <noreply@github.com>2021-07-13 10:31:34 -0400
commit4dd2b450ad8b764e6170b5e6dddeca2cabcac4db (patch)
treeaf89bbbabd96f701ef39f8bdcccaf529c074c45e
parent1d7e9c02842e9ea9126ccb9008ab42eecd166c5b (diff)
parenta63e52928d50243d1eb4d549974ef57f68f0d984 (diff)
Merge pull request #8292 from cam900/patch-177
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);
}
}