(MESS) ap2_dsk.c: support oversized Apple II EDD images [Peter Ferrie]

This commit is contained in:
Peter Ferrie 2015-02-23 22:18:20 -08:00
parent be54232cf6
commit 4edae19ad1

View File

@ -1545,7 +1545,7 @@ bool a2_edd_format::supports_save() const
int a2_edd_format::identify(io_generic *io, UINT32 form_factor)
{
return io_generic_size(io) == 2244608 ? 50 : 0;
return ((io_generic_size(io) == 2244608) || (io_generic_size(io) == 2310144)) ? 50 : 0;
}
UINT8 a2_edd_format::pick(const UINT8 *data, int pos)