diff options
Diffstat (limited to 'src/lib/util/chdcd.h')
-rw-r--r-- | src/lib/util/chdcd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/chdcd.h b/src/lib/util/chdcd.h index 6adcf29ce7b..3f31bad7e00 100644 --- a/src/lib/util/chdcd.h +++ b/src/lib/util/chdcd.h @@ -19,10 +19,10 @@ struct chdcd_track_input_entry void reset() { fname.clear(); offset = idx0offs = idx1offs = 0; swap = false; } std::string fname; // filename for each track - UINT32 offset; // offset in the data file for each track + uint32_t offset; // offset in the data file for each track bool swap; // data needs to be byte swapped - UINT32 idx0offs; - UINT32 idx1offs; + uint32_t idx0offs; + uint32_t idx1offs; }; struct chdcd_track_input_info |