mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
applies same rules to chds as roms.
This commit is contained in:
parent
9c8da09e53
commit
3a1f328e50
@ -454,8 +454,7 @@ static int audit_one_rom(core_options *options, const rom_entry *rom, const char
|
|||||||
set_status(record, AUDIT_STATUS_GOOD, SUBSTATUS_GOOD);
|
set_status(record, AUDIT_STATUS_GOOD, SUBSTATUS_GOOD);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* return TRUE if we found anything at all */
|
return (record->status != AUDIT_STATUS_NOT_FOUND || record->substatus == SUBSTATUS_NOT_FOUND_NODUMP || record->substatus == SUBSTATUS_NOT_FOUND_OPTIONAL);
|
||||||
return( record->status != AUDIT_STATUS_NOT_FOUND || record->substatus == SUBSTATUS_NOT_FOUND_NODUMP || record->substatus == SUBSTATUS_NOT_FOUND_OPTIONAL );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -473,6 +472,7 @@ static int audit_one_disk(core_options *options, const rom_entry *rom, const gam
|
|||||||
record->type = AUDIT_FILE_DISK;
|
record->type = AUDIT_FILE_DISK;
|
||||||
record->name = ROM_GETNAME(rom);
|
record->name = ROM_GETNAME(rom);
|
||||||
record->exphash = ROM_GETHASHDATA(rom);
|
record->exphash = ROM_GETHASHDATA(rom);
|
||||||
|
record->used_by_parent = rom_used_by_parent(gamedrv, rom, NULL);
|
||||||
|
|
||||||
/* open the disk */
|
/* open the disk */
|
||||||
err = open_disk_image_options(options, gamedrv, rom, &source_file, &source);
|
err = open_disk_image_options(options, gamedrv, rom, &source_file, &source);
|
||||||
@ -529,8 +529,7 @@ static int audit_one_disk(core_options *options, const rom_entry *rom, const gam
|
|||||||
mame_fclose(source_file);
|
mame_fclose(source_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* return TRUE if we found anything at all */
|
return (record->status != AUDIT_STATUS_NOT_FOUND || record->substatus == SUBSTATUS_NOT_FOUND_NODUMP || record->substatus == SUBSTATUS_NOT_FOUND_OPTIONAL);
|
||||||
return (source != NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user