diff options
Diffstat (limited to 'src/lib/util/chdcd.cpp')
-rw-r--r-- | src/lib/util/chdcd.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/util/chdcd.cpp b/src/lib/util/chdcd.cpp index 605b629c623..92958105500 100644 --- a/src/lib/util/chdcd.cpp +++ b/src/lib/util/chdcd.cpp @@ -1147,7 +1147,7 @@ chd_error chdcd_parse_cue(const char *tocfname, cdrom_toc &outtoc, chdcd_track_i ----------------------------------------------------------------------------------------*/ /** - * Dreamcast GDI has two images on one disc, SINGLE-DENSITY and HIGH-DENSITY. + * Dreamcast GDI has two images on one disc, SINGLE-DENSITY and HIGH-DENSITY. * * Redump stores both images in a single .cue with a REM comment separating the images. * This multi-cue format replaces the old flawed .gdi format. @@ -1158,7 +1158,7 @@ chd_error chdcd_parse_cue(const char *tocfname, cdrom_toc &outtoc, chdcd_track_i * indicating the Redump multi-cue format and therefore a Dreamcast GDI disc. */ -bool chdcd_is_gdicue(const char *tocfname) +bool chdcd_is_gdicue(const char *tocfname) { FILE *infile; bool has_rem_singledensity = false; @@ -1214,7 +1214,7 @@ bool chdcd_is_gdicue(const char *tocfname) * Pattern III - (SD) DATA + AUDIO, (HD) DATA + ... + DATA * * TOSEC layout is preferred and this code adjusts the TOC and INFO generated by a Redump .cue to match the - * layout from a TOSEC .gdi. + * layout from a TOSEC .gdi. */ chd_error chdcd_parse_gdicue(const char *tocfname, cdrom_toc &outtoc, chdcd_track_input_info &outinfo) @@ -1340,7 +1340,7 @@ chd_error chdcd_parse_gdicue(const char *tocfname, cdrom_toc &outtoc, chdcd_trac outinfo.track[trknum].fname.assign(lastfname); // default filename to the last one #if 0 - printf("trk %d: fname %s offset %d area %d\n", trknum, outinfo.track[trknum].fname.c_str(), outinfo.track[trknum].offset, outtoc.tracks[trknum].multicuearea); + printf("trk %d: fname %s offset %d area %d\n", trknum, outinfo.track[trknum].fname.c_str(), outinfo.track[trknum].offset, outtoc.tracks[trknum].multicuearea); #endif cdrom_convert_type_string_to_track_info(token, &outtoc.tracks[trknum]); @@ -1676,7 +1676,7 @@ chd_error chdcd_parse_toc(const char *tocfname, cdrom_toc &outtoc, chdcd_track_i if (strstr(tocftemp,".cue")) { - if (chdcd_is_gdicue(tocfname)) + if (chdcd_is_gdicue(tocfname)) return chdcd_parse_gdicue(tocfname, outtoc, outinfo); else return chdcd_parse_cue(tocfname, outtoc, outinfo); |