summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/d88_dsk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/d88_dsk.c')
-rw-r--r--src/lib/formats/d88_dsk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/d88_dsk.c b/src/lib/formats/d88_dsk.c
index fa87c31d784..e2d476d8087 100644
--- a/src/lib/formats/d88_dsk.c
+++ b/src/lib/formats/d88_dsk.c
@@ -449,7 +449,7 @@ int d88_format::identify(io_generic *io, UINT32 form_factor)
io_generic_read(io, h, 0, 32);
if((LITTLE_ENDIANIZE_INT32(*(UINT32 *)(h+0x1c)) == size) &&
- (h[0x1b] == 0x00 || h[0x1b] == 0x10 || h[0x1b] == 0x20 || h[0x1b] == 0x30 || h[0x1b] == 0x40))
+ (h[0x1b] == 0x00 || h[0x1b] == 0x10 || h[0x1b] == 0x20 || h[0x1b] == 0x30 || h[0x1b] == 0x40))
return 100;
return 0;