summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/comp4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/comp4.c')
-rw-r--r--src/mess/drivers/comp4.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/comp4.c b/src/mess/drivers/comp4.c
index 2f29b3d28de..6259553bfa7 100644
--- a/src/mess/drivers/comp4.c
+++ b/src/mess/drivers/comp4.c
@@ -4,11 +4,11 @@
Milton Bradley Comp IV
* TMC0904NL CP0904A (die labeled 4A0970D-04A)
-
+
This is a handheld Mastermind game; a code-breaking game where the player
needs to find out the correct sequence of colours (numbers in our case).
It is known as Logic 5 in Europe, and as Pythaligoras in Japan.
-
+
Press the R key to start, followed by a set of unique numbers and E.
Refer to the official manual for more information.
@@ -63,7 +63,7 @@ READ8_MEMBER(comp4_state::read_k)
for (int i = 0; i < 3; i++)
if (m_o & (1 << (i + 1)))
k |= m_button_matrix[i]->read();
-
+
return k;
}