Skip to content

Commit

Permalink
lib/formats/dmk_dsk.cpp: Header byte 4 is not reserved. Fixes MT 8851. (
Browse files Browse the repository at this point in the history
  • Loading branch information
wilbertpol committed Apr 12, 2024
1 parent 15e56ea commit e2b3371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/formats/dmk_dsk.cpp
Expand Up @@ -95,7 +95,7 @@ int dmk_format::identify(util::random_read &io, uint32_t form_factor, const std:
}

// Verify reserved/unsupported header bytes
for (int i = 4; i < 0x10; i++)
for (int i = 5; i < 0x10; i++)
{
if (header[i] != 0x00)
return 0;
Expand Down

0 comments on commit e2b3371

Please sign in to comment.