Hello.
Congratulations for this great version of MAME.
The point is that I have a home arcade, and want to know how to compile PSXMAME. I do not have much experience, and I would like to remove some ads that annoy visually.
More precisely I would do the following:
1. Remove screen "OK" changing mame.c:
ui_display_startup_screens (machine, firstrun,! settingsloaded);
by:
ui_display_startup_screens (machine,! firstrun, settingsloaded);
2. Remove message "initializing", erasing mame.c:
ui_set_startup_text (machine, "Initializing ...", TRUE);
3. Remove message "loading" changing romload.c:
(
char buffer [200];
if (name = NULL)
sprintf (buffer, "Loading (% d %%)", (UInt32) (100 * (uint64) romdata-> romsloadedsize / (uint64) romdata-> romstotalsize));
else
sprintf (buffer, "Loading Complete");
ui_set_startup_text (romdata-> machine, buffer, FALSE);
)
by:
(
)
4. Remove the white frame that appears while loading the game, erasing the lines ui.c:
video_frame_update (machine, FALSE);
5. Remove the message "decrypting" of CPS2 changing cps2crp.c:
(
loadingMessage char [256]; / / for displaying with UI
sprintf (loadingMessage, "Decrypting% d%%", i * 100/0x10000);
ui_set_startup_text (machine, loadingMessage, FALSE);
)
by:
(
) [/ CODE]
6. Remove screen "coinlock disable", erasing inptport.c:
ui_popup_time(3, "Coinlock disabled %s.", input_field_name(field));
return FALSE;
This I can do on the original MAME, or in other versions, but not PSXMAME, and PSXMAME is one of the best versions I tested and I would like to help me do it ... if possible. Or, please, what can be considered for a future update.
Thank you!
PS: sorry for my poor English and not knowing the Russian language.