Build Your Own Arcade Controls Forum
Main => Software Forum => Topic started by: Spawn2k on March 07, 2015, 04:05:59 am
-
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?
-
I'm guessing this is my problem?
http://mametesters.org/view.php?id=5418 (http://mametesters.org/view.php?id=5418)
I am tempted just to write a script that will create individual cfg files for all Playchoice-10 roms.
If anyone has found a workaround please let me know.