summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2017-06-20 00:25:42 +0200
committer GitHub <noreply@github.com>2017-06-20 00:25:42 +0200
commit4a78c6d0e30d5ee14615b218a52009bfa864cb48 (patch)
treed58ec86b8081085f977763b50c58bcee48e7a188
parent540e3b82599794cf1da11369dafb3af02839ab1e (diff)
Nitpicky about bit notes (nw)
-rw-r--r--src/mame/drivers/cubo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/cubo.cpp b/src/mame/drivers/cubo.cpp
index 70cf55fe82f..f13fa789170 100644
--- a/src/mame/drivers/cubo.cpp
+++ b/src/mame/drivers/cubo.cpp
@@ -402,10 +402,10 @@ WRITE_LINE_MEMBER( cubo_state::akiko_int_w )
WRITE8_MEMBER( cubo_state::akiko_cia_0_port_a_write )
{
- /* bit 1 = cd audio mute */
+ /* bit 0 = cd audio mute */
m_cdda->set_output_gain( 0, ( data & 1 ) ? 0.0 : 1.0 );
- /* bit 2 = Power Led on Amiga */
+ /* bit 1 = Power Led on Amiga */
output().set_led_value(0, (data & 2) ? 0 : 1);
handle_joystick_cia(data, m_cia_0->read(space, 2));