mirror of
https://github.com/holub/mame
synced 2025-05-10 16:21:42 +03:00
softlist.c: no_dump CHDs should not trigger validation errors. no whatsnew.
This commit is contained in:
parent
1298e570c8
commit
505dbc504b
@ -862,9 +862,14 @@ static void start_handler(void *data, const char *tagname, const char **attribut
|
||||
sprintf( hashdata, "%c%s%s", hash_collection::HASH_SHA1, str_sha1, ( nodump ? NO_DUMP : ( baddump ? BAD_DUMP : "" ) ) );
|
||||
|
||||
add_rom_entry( swlist, s_name, hashdata, 0, 0, ROMENTRYTYPE_ROM | (writeable ? DISK_READWRITE : DISK_READONLY ) );
|
||||
} else {
|
||||
parse_error(&swlist->state, "%s: Incomplete disk definition (line %lu)\n",
|
||||
swlist->file->filename(),XML_GetCurrentLineNumber(swlist->state.parser));
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!str_status || strcmp(str_status, "nodump")) // a no_dump chd is not an incomplete entry
|
||||
{
|
||||
parse_error(&swlist->state, "%s: Incomplete disk definition (line %lu)\n",
|
||||
swlist->file->filename(),XML_GetCurrentLineNumber(swlist->state.parser));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user