From cf0c9f42150b89d1290466603bdd1f97b4b4c670 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Wed, 7 Aug 2013 21:34:10 +0000 Subject: [PATCH] Correct disk geometry for PC-98 raw images --- src/lib/formats/pc98_dsk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/formats/pc98_dsk.c b/src/lib/formats/pc98_dsk.c index 1f4352bf455..e0ec0a6355a 100644 --- a/src/lib/formats/pc98_dsk.c +++ b/src/lib/formats/pc98_dsk.c @@ -79,9 +79,10 @@ const pc98_format::format pc98_format::formats[] = { }, { floppy_image::FF_525, floppy_image::DSHD, floppy_image::MFM, - 1200, 16, 77, 2, 512, {}, 1, {}, 80, 50, 22, 84 + 1200, 8, 77, 2, 1024, {}, 1, {}, 80, 50, 22, 84 }, {} }; + const floppy_format_type FLOPPY_PC98_FORMAT = &floppy_image_format_creator;