mirror of
https://github.com/holub/mame
synced 2025-06-20 11:16:37 +03:00
(MESS) ap2_dsk.c: support oversized Apple II EDD images [Peter Ferrie]
This commit is contained in:
parent
be54232cf6
commit
4edae19ad1
@ -1545,7 +1545,7 @@ bool a2_edd_format::supports_save() const
|
|||||||
|
|
||||||
int a2_edd_format::identify(io_generic *io, UINT32 form_factor)
|
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)
|
UINT8 a2_edd_format::pick(const UINT8 *data, int pos)
|
||||||
|
Loading…
Reference in New Issue
Block a user