mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
ap2_dsk: Fix broken detection of dsk [O. Galibert]
This commit is contained in:
parent
2eb20eddc1
commit
2d2afa9ed9
@ -563,9 +563,9 @@ int a2_16sect_format::identify(io_generic *io, UINT32 form_factor)
|
|||||||
UINT32 expected_size = 35 * 16 * 256;
|
UINT32 expected_size = 35 * 16 * 256;
|
||||||
|
|
||||||
// check standard size plus some oddball sizes in our softlist
|
// check standard size plus some oddball sizes in our softlist
|
||||||
if ((size = expected_size) || (size == 143403) || (size == 143363) || (size == 143358))
|
if ((size == expected_size) || (size == 143403) || (size == 143363) || (size == 143358))
|
||||||
{
|
{
|
||||||
return 1;
|
return 50;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user