From be15b0b477f9c7af5b93e73cf4cff542cd65332b Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Wed, 12 Feb 2014 17:59:45 +0000 Subject: [PATCH] Formats detected with size only should not have a confidence higher than 50 (nw) --- src/lib/formats/ti99_dsk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/formats/ti99_dsk.c b/src/lib/formats/ti99_dsk.c index 070e59d43c9..93dba665fe8 100644 --- a/src/lib/formats/ti99_dsk.c +++ b/src/lib/formats/ti99_dsk.c @@ -123,12 +123,12 @@ int ti99_sdf_format::identify(io_generic *io, UINT32 form_factor) || (file_size/92160==2) || (file_size/92160==4) || (file_size/92160==8) - || (file_size/92160==16))) return 100; + || (file_size/92160==16))) return 50; // Formats with 16 sectors per track (rare) if (((file_size % 163840)==0) && ( (file_size/163840==1) - || (file_size/163840==2))) return 100; + || (file_size/163840==2))) return 50; logerror("Unrecognized disk image geometry\n"); return 0;