Anyone know how to remap the default keys for Mame? Yes, i know you can press TAB to configure but some keys are missing.
Playchoice-10 needs a select channel button "0" and enter "-"
I want to remap these keys to something else. Is there anything in the defaults.cfg i can edit?
The only possible way i can think of is compiling my own mame?
in playch10.c
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_SERVICE ) PORT_NAME("Channel Select") PORT_CODE(KEYCODE_0)
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_SERVICE ) PORT_NAME("Enter") PORT_CODE(KEYCODE_MINUS)
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_SERVICE ) PORT_NAME("Reset") PORT_CODE(KEYCODE_EQUALS)
Please tell me there is an easier way?