summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2018-09-12 23:48:51 -0400
committer arbee <rb6502@users.noreply.github.com>2018-09-12 23:48:51 -0400
commit9dea8bbd37de71c8b2a3495fa18366ac03c414c6 (patch)
tree2e4566207c80792fd0cbb9c034a8d10ddd909b5b /src/lib/util
parentaec4b10df67897517df0788e7382a242f32a0ae7 (diff)
chdcd: also accept .toast as a synonym for ISO images (nw)
Diffstat (limited to 'src/lib/util')
-rw-r--r--src/lib/util/chdcd.cpp2
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);
}