summaryrefslogtreecommitdiffstats
path: root/src/lib/formats/flex_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/flex_dsk.h')
-rw-r--r--src/lib/formats/flex_dsk.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/lib/formats/flex_dsk.h b/src/lib/formats/flex_dsk.h
index bade0115c56..c40e0fbda15 100644
--- a/src/lib/formats/flex_dsk.h
+++ b/src/lib/formats/flex_dsk.h
@@ -18,28 +18,28 @@ public:
virtual const char *name() const override;
virtual const char *description() const override;
virtual const char *extensions() const override;
- virtual int identify(io_generic *io, UINT32 form_factor) override;
- virtual bool load(io_generic *io, UINT32 form_factor, floppy_image *image) override;
+ virtual int identify(io_generic *io, uint32_t form_factor) override;
+ virtual bool load(io_generic *io, uint32_t form_factor, floppy_image *image) override;
virtual bool supports_save() const override;
private:
struct sysinfo_sector
{
- UINT8 unused1[16];
- UINT8 disk_name[8];
- UINT8 disk_ext[3];
- UINT8 disk_number[2];
- UINT8 fc_start_trk;
- UINT8 fc_start_sec;
- UINT8 fc_end_trk;
- UINT8 fc_end_sec;
- UINT8 free[2];
- UINT8 month;
- UINT8 day;
- UINT8 year;
- UINT8 last_trk;
- UINT8 last_sec;
- UINT8 unused2[216];
+ uint8_t unused1[16];
+ uint8_t disk_name[8];
+ uint8_t disk_ext[3];
+ uint8_t disk_number[2];
+ uint8_t fc_start_trk;
+ uint8_t fc_start_sec;
+ uint8_t fc_end_trk;
+ uint8_t fc_end_sec;
+ uint8_t free[2];
+ uint8_t month;
+ uint8_t day;
+ uint8_t year;
+ uint8_t last_trk;
+ uint8_t last_sec;
+ uint8_t unused2[216];
} info;
};