mirror of
https://github.com/holub/mame
synced 2025-10-04 16:34:53 +03:00
Added reload_plain flag to softlists (mess import). (no whatsnew)
This commit is contained in:
parent
4527c9840b
commit
545a7e58c0
@ -696,6 +696,11 @@ static void start_handler(void *data, const char *tagname, const char **attribut
|
||||
/* Handle 'reload' loadflag */
|
||||
add_rom_entry( swlist, NULL, NULL, offset, length, ROMENTRYTYPE_RELOAD | ROM_INHERITFLAGS );
|
||||
}
|
||||
else if ( str_loadflag && !strcmp(str_loadflag, "reload_plain") )
|
||||
{
|
||||
/* Handle 'reload_plain' loadflag */
|
||||
add_rom_entry( swlist, NULL, NULL, offset, length, ROMENTRYTYPE_RELOAD);
|
||||
}
|
||||
else if ( str_loadflag && !strcmp(str_loadflag, "continue") )
|
||||
{
|
||||
/* Handle 'continue' loadflag */
|
||||
|
Loading…
Reference in New Issue
Block a user