From fff36893cf3126107971a022e155ed5742251c4c Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 3 Apr 2004 11:15:45 +0000 Subject: [PATCH] Added "CATALOG" as a valid identifier for CUE sheets. --- src/common/chapters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/chapters.cpp b/src/common/chapters.cpp index 7c4f78995..a533fc271 100644 --- a/src/common/chapters.cpp +++ b/src/common/chapters.cpp @@ -281,7 +281,7 @@ probe_cue_chapters(mm_text_io_c *in) { if (!in->getline2(s)) return false; if (starts_with_case(s, "performer ") || starts_with_case(s, "title ") || - starts_with_case(s, "file ")) + starts_with_case(s, "file ") || starts_with_case(s, "catalog ")) return true; return false; }