diff --git a/MPF.Library/Utilities/EnumExtensions.cs b/MPF.Library/Utilities/EnumExtensions.cs index 5c4700fb..ed3140c1 100644 --- a/MPF.Library/Utilities/EnumExtensions.cs +++ b/MPF.Library/Utilities/EnumExtensions.cs @@ -54,6 +54,10 @@ namespace MPF.Utilities /// /// KnownSystem value to check /// True if the system is audio-only, false otherwise + /// + /// Philips CD-i should NOT be in this list. It's being included until there's a + /// reasonable distinction between CD-i and CD-i ready on the database side. + /// public static bool IsAudio(this KnownSystem? system) { switch (system) @@ -65,6 +69,7 @@ namespace MPF.Utilities case KnownSystem.HasbroVideoNowColor: case KnownSystem.HasbroVideoNowJr: case KnownSystem.HasbroVideoNowXP: + case KnownSystem.PhilipsCDi: case KnownSystem.SuperAudioCD: return true; default: