Main > Software Forum

How to get rid of the ok screens?

(1/2) > >>

Gradius:
With previous versions of MAME it was possible by editing the source, but not now. I've thought I could generate a cfg file for each file, but loading every game and writting ok would be a pain. Since all cfgs are the same but with the name of each game, I suppose it would be possible to automatically generate all the files. The problem is how to put the name of the file inside the file's text. If you know any website with all the cfgs, or better a way to do this more easily, please tell me.

SlyDog:
you can still edit the source code.  just change the lines that say "options skip_disclaimer & options skip_warning" both to "options skip_gameinfo" so you can set skip gameinfo to 1 (or just check the box in mame32) and it will skip the ok screen, the "not 100% emulated" warnings, and the info.

if you like the warnings, as some do, of course don't change that one, just change the disclaimer.

Gradius:
WOW! Does that really work??? I'm eager to get home and try! Thanx!

Gradius:
   /* if we didn't find a settings file, show the disclaimer */
   if (settingsloaded || options.skip_disclaimer || ui_display_copyright(artwork_get_ui_bitmap()) == 0)
   {
      /* show info about incorrect behaviour (wrong colors etc.) */
      if (options.skip_warnings || ui_display_game_warnings(artwork_get_ui_bitmap()) == 0)
      {
         /* show info about the game */
         if (options.skip_gameinfo || ui_display_game_info(artwork_get_ui_bitmap()) == 0)
         {

That's from mame.c

You mean I have to change exactly the 'options.skip_warnings' and the 'options.skip_warnings' strings with 'options.skip_disclaimer'?

Or do I have to change

if (settingsloaded || options.skip_disclaimer || ui_display_copyright(artwork_get_ui_bitmap()) == 0)

and

if (options.skip_warnings || ui_display_game_warnings(artwork_get_ui_bitmap()) == 0)

with

if (options.skip_gameinfo || ui_display_game_info(artwork_get_ui_bitmap()) == 0)

Thanx!

SithMaster:
what can i use to modify the source notepad cause i really dont want to install c++ on my pc just to do that?

Navigation

[0] Message Index

[#] Next page

Go to full version