diff --git a/src/docio/detect_format.cpp b/src/docio/detect_format.cpp index 805daba01..043f6a0ca 100644 --- a/src/docio/detect_format.cpp +++ b/src/docio/detect_format.cpp @@ -119,7 +119,8 @@ FileFormat detect_format_by_file_extension(const std::string& filename) if (ext == "pal") return FileFormat::PAL_PALETTE; - if (ext == "pcx") + if (ext == "pcx" || + ext == "pcc") return FileFormat::PCX_IMAGE; if (ext == "anim")