diff options
author | 2013-01-05 22:10:53 +0000 | |
---|---|---|
committer | 2013-01-05 22:10:53 +0000 | |
commit | f81826d5ba2fcdaba9b6d12cffb59e4d726e1a2b (patch) | |
tree | 3ab8ee567bd4118ee6be4dc72b0f8ad50a9b29fb | |
parent | 13f070feea561c0aa385e2d7581c4099b7a2eddf (diff) |
cleaned up some chdcd.c error messages (nw)
-rw-r--r-- | src/lib/util/chdcd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/util/chdcd.c b/src/lib/util/chdcd.c index f5da3eba348..1a9948aeb85 100644 --- a/src/lib/util/chdcd.c +++ b/src/lib/util/chdcd.c @@ -401,12 +401,12 @@ chd_error chdcd_parse_nero(const char *tocfname, cdrom_toc &outtoc, chdcd_track_ break; case 0x0300: // Mode 2 Form 1 - printf("ERROR: Mode 2 Form 1 tracks not supported, contant MAMEDEV!\n"); + printf("ERROR: Mode 2 Form 1 tracks not supported\n"); fclose(infile); return CHDERR_NOT_SUPPORTED; case 0x0500: // raw data - printf("ERROR: Raw data tracks not supported, contant MAMEDEV!\n"); + printf("ERROR: Raw data tracks not supported\n"); fclose(infile); return CHDERR_NOT_SUPPORTED; @@ -421,17 +421,17 @@ chd_error chdcd_parse_nero(const char *tocfname, cdrom_toc &outtoc, chdcd_track_ break; case 0x0f00: // raw data with sub-channel - printf("ERROR: Raw data tracks with sub-channel not supported, contant MAMEDEV!\n"); + printf("ERROR: Raw data tracks with sub-channel not supported\n"); fclose(infile); return CHDERR_NOT_SUPPORTED; case 0x1000: // audio with sub-channel - printf("ERROR: Audio tracks with sub-channel not supported, contant MAMEDEV!\n"); + printf("ERROR: Audio tracks with sub-channel not supported\n"); fclose(infile); return CHDERR_NOT_SUPPORTED; case 0x1100: // raw Mode 2 Form 1 with sub-channel - printf("ERROR: Raw Mode 2 Form 1 tracks with sub-channel not supported, contant MAMEDEV!\n"); + printf("ERROR: Raw Mode 2 Form 1 tracks with sub-channel not supported\n"); fclose(infile); return CHDERR_NOT_SUPPORTED; |