mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +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;
|
||||
|
||||
// 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;
|
||||
|
Loading…
Reference in New Issue
Block a user