The NEW Build Your Own Arcade Controls
Software Support => GroovyMAME => Topic started by: retrogamer123 on May 12, 2017, 11:35:01 am
-
Basically I was trying to follow the official docs on this
http://docs.mamedev.org/advanced/devicemap.html (http://docs.mamedev.org/advanced/devicemap.html)
I put the cfg file in the following foldre
ctrlr/xbox360.cfg
I set the ctrl path in groovy mame to ctrl
and in the core input options I set:
ctrl xbox360
Thats the working part. So fine so good. Starting groovymame with a game also uses my controller mappings.
But as soon as I add the following to my cfg file:
<mapdevice device=”XInput Player 1” controller=”JOYCODE_1” />
<mapdevice device=”XInput Player 2” controller=”JOYCODE_2” />
groovymame gives me an error that it can't load the controller cfg file
I'm using the d3d9x build of groovymame 0.183
Does anyone have any idea what I'm doing wrong ?? ???
-
What happens with official MAME?
-
Basically I was trying to follow the official docs on this
http://docs.mamedev.org/advanced/devicemap.html (http://docs.mamedev.org/advanced/devicemap.html)
I put the cfg file in the following foldre
ctrlr/xbox360.cfg
I set the ctrl path in groovy mame to ctrl
and in the core input options I set:
ctrl xbox360
Thats the working part. So fine so good. Starting groovymame with a game also uses my controller mappings.
But as soon as I add the following to my cfg file:
<mapdevice device=”XInput Player 1” controller=”JOYCODE_1” />
<mapdevice device=”XInput Player 2” controller=”JOYCODE_2” />
groovymame gives me an error that it can't load the controller cfg file
I'm using the d3d9x build of groovymame 0.183
Does anyone have any idea what I'm doing wrong ?? ???
Did you copy and paste the example?
http://docs.mamedev.org/advanced/devicemap.html (http://docs.mamedev.org/advanced/devicemap.html)
<?xml version="1.0"?>
<mameconfig version="10">
<system name="default">
<input>
<mapdevice device="XInput Player 1" controller="JOYCODE_1"/>
<mapdevice device="XInput Player 2" controller="JOYCODE_2"/>
</input>
</system>
</mameconfig>
Your double quotes are not correct (Docs have formatted double quotes, Mame requires standard double quotes).
-
@ozfalcon.
Thx so much. Yes, you were right.I had the wrong doublequotes.
Its working now, cause the verbose output of mame now shows the remapped controller messages :)