From 9f2fb4b22c6faa43ea27279fb59b1b1245bff3d5 Mon Sep 17 00:00:00 2001 From: Fabio Priuli Date: Fri, 2 Mar 2012 07:48:15 +0000 Subject: [PATCH] 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. --- src/emu/clifront.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/emu/clifront.c b/src/emu/clifront.c index e6e183b472b..aacf10d1cad 100644 --- a/src/emu/clifront.c +++ b/src/emu/clifront.c @@ -1201,10 +1201,6 @@ void cli_frontend::output_single_softlist(FILE *out,software_list *list, const c { fprintf( out, "\t\t\t\t\t\n", ROM_GETLENGTH(rom), ROM_GETOFFSET(rom) ); } - else if ( ROMENTRY_ISCONTINUE(rom) ) - { - fprintf( out, "\t\t\t\t\t\n", ROM_GETLENGTH(rom), ROM_GETOFFSET(rom) ); - } else if ( ROMENTRY_ISFILL(rom) ) { fprintf( out, "\t\t\t\t\t\n", ROM_GETLENGTH(rom), ROM_GETOFFSET(rom) );