From 413da6a33514933e2e30219732891958582f49b5 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Mon, 15 Jan 2024 15:13:57 +0900 Subject: [PATCH] Recognize .cdr and .toast as CD-ROM image file endings --- cpp/devices/device_factory.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpp/devices/device_factory.h b/cpp/devices/device_factory.h index 7072980c..ff763884 100644 --- a/cpp/devices/device_factory.h +++ b/cpp/devices/device_factory.h @@ -44,7 +44,9 @@ private: { "hdr", SCRM }, { "mos", SCMO }, { "is1", SCCD }, - { "iso", SCCD } + { "iso", SCCD }, + { "cdr", SCCD }, + { "toast", SCCD } }; const inline static unordered_map> DEVICE_MAPPING = {