Build Your Own Arcade Controls Forum

Main => Main Forum => Topic started by: cowguy on May 26, 2007, 05:42:05 pm

Title: Disabling the MAME starting windows?
Post by: cowguy on May 26, 2007, 05:42:05 pm
How could I disable the starting screens in mame that say initializing decoding and the one that says about the game and it CPU.
Title: Re: Disabling the MAME starting windows?
Post by: Apollo on May 26, 2007, 06:08:54 pm
you need to code a subroutine that sends an 'O' signal followed by a 'K' signal when mame starts a new game

or try putting these lines in your mame config file

skip_warnings 1
skip_disclaimer 1
skip_validitychecks 1
skip_gameinfo 1
skip_usingbyoacsearchfunctionbecauseitsjusttoohard 1


Title: Re: Disabling the MAME starting windows?
Post by: shorthair on May 26, 2007, 07:37:28 pm
Ha, what a goofball. People don't necessarily know these things. I had to learn some of them from using Mame32 and looking in the ini's. None of the mame mother ---smurfs--- have written a tutorial on these sorts of things (though I make wiki entries and such with the little I know), so this is some of the spoils.
Title: Re: Disabling the MAME starting windows?
Post by: SGT on May 27, 2007, 09:02:13 am
Code: [Select]
you need to code a subroutine that sends an 'O' signal followed by a 'K' signal
That does not get rid of the "decoding" message.

You can comment out a couple of lines in the Mame code and recompile.  There was a thread recently in the software forum on exactly how to do this.  It is not hard to recompile as other threads in the software forum explain how along with Mr. Do's site.
Title: Re: Disabling the MAME starting windows?
Post by: cowguy on May 27, 2007, 10:28:22 am
Alright thanks for the help, I'll look for that topic.