diff options
author | 2018-09-12 23:48:51 -0400 | |
---|---|---|
committer | 2018-09-12 23:48:51 -0400 | |
commit | 9dea8bbd37de71c8b2a3495fa18366ac03c414c6 (patch) | |
tree | 2e4566207c80792fd0cbb9c034a8d10ddd909b5b | |
parent | aec4b10df67897517df0788e7382a242f32a0ae7 (diff) |
chdcd: also accept .toast as a synonym for ISO images (nw)
-rw-r--r-- | src/lib/util/chdcd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/chdcd.cpp b/src/lib/util/chdcd.cpp index 63a94ed7d4b..85bd7cdad27 100644 --- a/src/lib/util/chdcd.cpp +++ b/src/lib/util/chdcd.cpp @@ -1173,7 +1173,7 @@ chd_error chdcd_parse_toc(const char *tocfname, cdrom_toc &outtoc, chdcd_track_i return chdcd_parse_nero(tocfname, outtoc, outinfo); } - if (strstr(tocftemp,".iso") || strstr(tocftemp,".cdr")) + if (strstr(tocftemp,".iso") || strstr(tocftemp,".cdr") || strstr(tocftemp,".toast")) { return chdcd_parse_iso(tocfname, outtoc, outinfo); } |