allow loading of WAVE tracks

This commit is contained in:
Jamie Dickson
2019-12-05 07:27:02 -06:00
committed by sorgelig
parent 8b5c95343f
commit e04a1d144f

View File

@@ -122,7 +122,7 @@ int cdd_t::LoadCUE(const char* filename) {
this->toc.tracks[this->toc.last].offset = 0;
if (!strstr(lptr, "BINARY") && !strstr(lptr, "MOTOROLA"))
if (!strstr(lptr, "BINARY") && !strstr(lptr, "MOTOROLA") && !strstr(lptr, "WAVE"))
{
FileClose(&this->toc.tracks[this->toc.last].f);
printf("\x1b[32mMCD: unsupported file: %s\n\x1b[0m", fname);