mGalaxy forum

General Discussions => Need Help? => Topic started by: deadl0ck on June 23, 2018, 07:43:25 AM

Title: Command line parameters for MAME ?
Post by: deadl0ck on June 23, 2018, 07:43:25 AM
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
Title: Re: Command line parameters for MAME ?
Post by: deadl0ck on June 23, 2018, 12:01:11 PM
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 ?
Title: Re: Command line parameters for MAME ?
Post by: Aeliss on June 24, 2018, 03:30:45 AM
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
Title: Re: Command line parameters for MAME ?
Post by: deadl0ck on June 24, 2018, 04:30:01 AM
Cool - thanks !
Title: Re: Command line parameters for MAME ?
Post by: curtishart on July 11, 2018, 09:53:00 PM
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

Is there a way to have custom parameters for individual games? (Specifically for Daphne if it's different per system)
Title: Re: Command line parameters for MAME ?
Post by: Aeliss on July 14, 2018, 09:19:15 AM
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: (autoit) [Select]
If StringInStr($command,"game") Then $command = $command & "special option"
to add other params at the end.