trunk/src/lib/util/chdcd.c
| r20090 | r20091 | |
| 401 | 401 | break; |
| 402 | 402 | |
| 403 | 403 | case 0x0300: // Mode 2 Form 1 |
| 404 | | printf("ERROR: Mode 2 Form 1 tracks not supported, contant MAMEDEV!\n"); |
| 404 | printf("ERROR: Mode 2 Form 1 tracks not supported\n"); |
| 405 | 405 | fclose(infile); |
| 406 | 406 | return CHDERR_NOT_SUPPORTED; |
| 407 | 407 | |
| 408 | 408 | case 0x0500: // raw data |
| 409 | | printf("ERROR: Raw data tracks not supported, contant MAMEDEV!\n"); |
| 409 | printf("ERROR: Raw data tracks not supported\n"); |
| 410 | 410 | fclose(infile); |
| 411 | 411 | return CHDERR_NOT_SUPPORTED; |
| 412 | 412 | |
| r20090 | r20091 | |
| 421 | 421 | break; |
| 422 | 422 | |
| 423 | 423 | case 0x0f00: // raw data with sub-channel |
| 424 | | printf("ERROR: Raw data tracks with sub-channel not supported, contant MAMEDEV!\n"); |
| 424 | printf("ERROR: Raw data tracks with sub-channel not supported\n"); |
| 425 | 425 | fclose(infile); |
| 426 | 426 | return CHDERR_NOT_SUPPORTED; |
| 427 | 427 | |
| 428 | 428 | case 0x1000: // audio with sub-channel |
| 429 | | printf("ERROR: Audio tracks with sub-channel not supported, contant MAMEDEV!\n"); |
| 429 | printf("ERROR: Audio tracks with sub-channel not supported\n"); |
| 430 | 430 | fclose(infile); |
| 431 | 431 | return CHDERR_NOT_SUPPORTED; |
| 432 | 432 | |
| 433 | 433 | case 0x1100: // raw Mode 2 Form 1 with sub-channel |
| 434 | | printf("ERROR: Raw Mode 2 Form 1 tracks with sub-channel not supported, contant MAMEDEV!\n"); |
| 434 | printf("ERROR: Raw Mode 2 Form 1 tracks with sub-channel not supported\n"); |
| 435 | 435 | fclose(infile); |
| 436 | 436 | return CHDERR_NOT_SUPPORTED; |
| 437 | 437 | |