From 776836d2700123f8a0f109d3a2ac00fad5cdfd48 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 13 Apr 2023 23:39:40 +0200 Subject: Add check for Interop font assets being present (in the ASSETMAP and on disk). --- tools/common.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/common.cc b/tools/common.cc index 13ce9cb0..030a2ce7 100644 --- a/tools/common.cc +++ b/tools/common.cc @@ -49,7 +49,9 @@ dcp::filter_notes (vector& notes, bool ignore_missing_ass vector filtered; std::copy_if (notes.begin(), notes.end(), std::back_inserter(filtered), [](dcp::VerificationNote const& i) { - return i.code() != dcp::VerificationNote::Code::MISSING_ASSET && i.code() != dcp::VerificationNote::Code::EXTERNAL_ASSET; + return i.code() != dcp::VerificationNote::Code::MISSING_ASSET && + i.code() != dcp::VerificationNote::Code::EXTERNAL_ASSET && + i.code() != dcp::VerificationNote::Code::MISSING_FONT; }); notes = filtered; -- cgit v1.2.3