Previous 199869 Revisions Next

r25348 Monday 16th September, 2013 at 15:15:51 UTC by Oliver Stöneberg
removed useless unsigned variable checks in src/lib/formats/ap_dsk35.c (nw)
[src/lib/formats]ap_dsk35.c

trunk/src/lib/formats/ap_dsk35.c
r25347r25348
12671267   UINT32 dsize = (h[0x40] << 24) | (h[0x41] << 16) | (h[0x42] << 8) | h[0x43];
12681268   UINT32 tsize = (h[0x44] << 24) | (h[0x45] << 16) | (h[0x46] << 8) | h[0x47];
12691269
1270   return dsize > 0 && tsize >= 0 && size == 0x54+tsize+dsize && h[0] < 64 && h[0x52] == 1 && h[0x53] == 0 ? 100 : 0;
1270   return size == 0x54+tsize+dsize && h[0] < 64 && h[0x52] == 1 && h[0x53] == 0 ? 100 : 0;
12711271}
12721272
12731273const floppy_image_format_t::desc_e dc42_format::mac_gcr[] = {

Previous 199869 Revisions Next


© 1997-2024 The MAME Team