Page 1 of 1
Command line parameters for MAME ?
Posted: Sat Jun 23, 2018 12:43 pm
by deadl0ck
Is there a way to add command line parameters for MAME ?
For some reason all my roms are at -15 for volume and I want to set them to max (Value 0) with the command line option "-volume 0"
If I addd this to the end of the executable mGalaxy does not like it and disables MAME.
Is there a way to do this ?
By the way - I can find the setting in any of the MAME ini files for my version of MAME
Re: Command line parameters for MAME ?
Posted: Sat Jun 23, 2018 5:01 pm
by deadl0ck
OK - found that it was actually being set by mGalaxy in the preferences window !
Out of interest - is it possible to manually pass command line options via mGalaxy ?
Re: Command line parameters for MAME ?
Posted: Sun Jun 24, 2018 8:30 am
by Aeliss
You can't pass command line to mgalaxy but you can pass "custom" command line to emulators, check the file mGalaxy\Data\UserSystems\UserSystems.xml
Re: Command line parameters for MAME ?
Posted: Sun Jun 24, 2018 9:30 am
by deadl0ck
Cool - thanks !
Re: Command line parameters for MAME ?
Posted: Thu Jul 12, 2018 2:53 am
by curtishart
[quote="Aeliss"]
You can't pass command line to mgalaxy but you can pass "custom" command line to emulators, check the file mGalaxy\Data\UserSystems\UserSystems.xml
[/quote]
Is there a way to have custom parameters for individual games? (Specifically for Daphne if it's different per system)
Re: Command line parameters for MAME ?
Posted: Sat Jul 14, 2018 2:19 pm
by Aeliss
Herrr, I don't remember if it's possible for daphnee, I think not.
I think the only one solution is using script, with something like that
Code: Select all
If StringInStr($command,"game") Then $command = $command & "special option"
to add other params at the end.