diff options
Diffstat (limited to 'src/lib/formats/ccvf_dsk.cpp')
-rw-r--r-- | src/lib/formats/ccvf_dsk.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/formats/ccvf_dsk.cpp b/src/lib/formats/ccvf_dsk.cpp index febe78d45d2..27aaf355871 100644 --- a/src/lib/formats/ccvf_dsk.cpp +++ b/src/lib/formats/ccvf_dsk.cpp @@ -8,9 +8,11 @@ *********************************************************************/ -#include "emu.h" // BIT #include "formats/ccvf_dsk.h" +#include "coretmpl.h" // BIT + + ccvf_format::ccvf_format() { formats = file_formats; @@ -124,7 +126,7 @@ bool ccvf_format::load(io_generic *io, uint32_t form_factor, floppy_image *image for (int i=0; i<1920 && pos<size; i++, pos++) { for (int bit=0; bit<8; bit++) { - bit_w(buffer, BIT(bytes[pos], bit), f.cell_size); + bit_w(buffer, util::BIT(bytes[pos], bit), f.cell_size); } } |