mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
clifront: fixed -lsoft reporting wrong sizes for roms using ROM_CONTINUE (the size is calculated with rom_file_size which already takes into account all ROM_CONTINUE, so no need to output it). no whatsnew.
This commit is contained in:
parent
a1d2e11914
commit
9f2fb4b22c
@ -1201,10 +1201,6 @@ void cli_frontend::output_single_softlist(FILE *out,software_list *list, const c
|
||||
{
|
||||
fprintf( out, "\t\t\t\t\t<rom size=\"%d\" offset=\"0x%x\" loadflag=\"reload\" />\n", ROM_GETLENGTH(rom), ROM_GETOFFSET(rom) );
|
||||
}
|
||||
else if ( ROMENTRY_ISCONTINUE(rom) )
|
||||
{
|
||||
fprintf( out, "\t\t\t\t\t<rom size=\"%d\" offset=\"0x%x\" loadflag=\"continue\" />\n", ROM_GETLENGTH(rom), ROM_GETOFFSET(rom) );
|
||||
}
|
||||
else if ( ROMENTRY_ISFILL(rom) )
|
||||
{
|
||||
fprintf( out, "\t\t\t\t\t<rom size=\"%d\" offset=\"0x%x\" loadflag=\"fill\" />\n", ROM_GETLENGTH(rom), ROM_GETOFFSET(rom) );
|
||||
|
Loading…
Reference in New Issue
Block a user