mirror of
https://github.com/holub/mame
synced 2025-05-25 15:25:33 +03:00
- 03776: Various PC-based drivers: MESS Scroll Lock keyboard toggle has snuck in somehow [Miodrag Milanovic]
This commit is contained in:
parent
230401bb03
commit
d7e899f92e
@ -4704,9 +4704,10 @@ static void record_port(const input_port_config *port)
|
|||||||
|
|
||||||
int input_machine_has_keyboard(running_machine *machine)
|
int input_machine_has_keyboard(running_machine *machine)
|
||||||
{
|
{
|
||||||
|
int have_keyboard = FALSE;
|
||||||
|
#ifdef MESS
|
||||||
const input_field_config *field;
|
const input_field_config *field;
|
||||||
const input_port_config *port;
|
const input_port_config *port;
|
||||||
int have_keyboard = FALSE;
|
|
||||||
for (port = machine->portlist.first(); port != NULL; port = port->next)
|
for (port = machine->portlist.first(); port != NULL; port = port->next)
|
||||||
{
|
{
|
||||||
for (field = port->fieldlist; field != NULL; field = field->next)
|
for (field = port->fieldlist; field != NULL; field = field->next)
|
||||||
@ -4716,6 +4717,7 @@ int input_machine_has_keyboard(running_machine *machine)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return have_keyboard;
|
return have_keyboard;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user