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