summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/inptport.c
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2010-05-27 19:40:31 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2010-05-27 19:40:31 +0000
commit76c4e4e40b3812cf2b64b760429774c3f56423ce (patch)
tree23678d026f364a31f0008d3b573257713144814f /src/emu/inptport.c
parentd33c6b10046ce53a9903b3f643b0c850c9a55fcb (diff)
Increased number of coinslots to 12, and tilt inputs to 4, required by in-progress gambling driver [David Haywood]
Diffstat (limited to 'src/emu/inptport.c')
-rw-r--r--src/emu/inptport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/inptport.c b/src/emu/inptport.c
index b244ab53a43..028ed3551b5 100644
--- a/src/emu/inptport.c
+++ b/src/emu/inptport.c
@@ -2841,7 +2841,7 @@ static int frame_get_digital_field_state(const input_field_config *field, int mo
}
/* skip locked-out coin inputs */
- if (curstate && field->type >= IPT_COIN1 && field->type <= IPT_COIN8 && coin_lockout_get_state(field->port->machine, field->type - IPT_COIN1) && options_get_bool(mame_options(), OPTION_COIN_LOCKOUT))
+ if (curstate && field->type >= IPT_COIN1 && field->type <= IPT_COIN12 && coin_lockout_get_state(field->port->machine, field->type - IPT_COIN1) && options_get_bool(mame_options(), OPTION_COIN_LOCKOUT))
{
ui_popup_time(3, "Coinlock disabled %s.", input_field_name(field));
return FALSE;