summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/starwbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/starwbc.c')
-rw-r--r--src/mess/drivers/starwbc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mess/drivers/starwbc.c b/src/mess/drivers/starwbc.c
index c79e8a7edd7..3d9b822f636 100644
--- a/src/mess/drivers/starwbc.c
+++ b/src/mess/drivers/starwbc.c
@@ -10,6 +10,9 @@
START TURN. Refer to the official manual for more information.
+ TODO:
+ - MCU clock is unknown
+
***************************************************************************/
#include "emu.h"
@@ -18,7 +21,6 @@
#include "starwbc.lh"
-
// master clock is unknown, the value below is an approximation
// (patent says R=51K, C=47pf, but then it sounds too low pitched)
#define MASTER_CLOCK (350000)
@@ -142,8 +144,8 @@ READ8_MEMBER(starwbc_state::read_k)
// read selected button rows
for (int i = 0; i < 5; i++)
{
- const int r[5] = { 0, 1, 3, 5, 7 };
- if (m_r >> r[i] & 1)
+ const int ki[5] = { 0, 1, 3, 5, 7 };
+ if (m_r >> ki[i] & 1)
k |= m_button_matrix[i]->read();
}