summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-11-09 13:20:10 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-11-09 13:20:10 +0000
commitc041a6eddc6ddfda5eedab78722ee9581d56347d (patch)
tree5d1367f94de7f8f45f16f87e71ec1a6ea4b2354c /src/lib
parentc9fb7c59f84588a0c1b158747f20b7c4298ac74c (diff)
Sync with MESS, OG work, credited there (no whatsnew)
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/formats/ipf_dsk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/ipf_dsk.c b/src/lib/formats/ipf_dsk.c
index db17bcc550e..25a08136952 100644
--- a/src/lib/formats/ipf_dsk.c
+++ b/src/lib/formats/ipf_dsk.c
@@ -447,7 +447,7 @@ void ipf_format::track_write_mfm(UINT32 *&track, const UINT8 *data, UINT32 start
void ipf_format::track_write_weak(UINT32 *&track, UINT32 cells)
{
for(UINT32 i=0; i != cells; i++)
- *track++ = MG_W;
+ *track++ = floppy_image::MG_N;
}
bool ipf_format::generate_block_data(const UINT8 *data, const UINT8 *dlimit, UINT32 *track, UINT32 *tlimit, bool &context)