From 92f475be80d98f7faff2bb21e9a0c45d0cbac29b Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Tue, 21 Jan 2014 22:28:05 +0000 Subject: [PATCH] Fixed build. (nw) --- src/lib/formats/g64_dsk.c | 2 +- src/lib/formats/g64_dsk.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/formats/g64_dsk.c b/src/lib/formats/g64_dsk.c index 2d0edf96fbf..bb8bbd7639f 100644 --- a/src/lib/formats/g64_dsk.c +++ b/src/lib/formats/g64_dsk.c @@ -32,7 +32,7 @@ const char *g64_format::extensions() const return "g64,g41,g71"; } -const UINT32 g64_format::cell_size[] = +const UINT32 g64_format::c1541_cell_size[] = { 4000, // 16MHz/16/4 3750, // 16MHz/15/4 diff --git a/src/lib/formats/g64_dsk.h b/src/lib/formats/g64_dsk.h index d48f85958c7..d5533729592 100644 --- a/src/lib/formats/g64_dsk.h +++ b/src/lib/formats/g64_dsk.h @@ -38,7 +38,7 @@ protected: MASTERING = 0x2ac }; - static const UINT32 cell_size[]; + static const UINT32 c1541_cell_size[]; }; extern const floppy_format_type FLOPPY_G64_FORMAT;