From 874be1fd6e382996af220136e70c83a5e568a7ad Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 10 May 2022 15:58:47 +0200 Subject: [PATCH] Fixed SoundEffectReader incorrectly claiming it could read ogg and mp3 files --- CHANGELOG.md | 3 +++ MLEM.Data/Content/SoundEffectReader.cs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d3cbf1..ca42a71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,9 @@ Removals Improvements - Premultiply textures when using RawContentManager +Fixes +- Fixed SoundEffectReader incorrectly claiming it could read ogg and mp3 files + ## 5.3.0 ### MLEM Additions diff --git a/MLEM.Data/Content/SoundEffectReader.cs b/MLEM.Data/Content/SoundEffectReader.cs index a846b96..fdac53b 100644 --- a/MLEM.Data/Content/SoundEffectReader.cs +++ b/MLEM.Data/Content/SoundEffectReader.cs @@ -12,7 +12,7 @@ namespace MLEM.Data.Content { /// public override string[] GetFileExtensions() { - return new[] {"ogg", "wav", "mp3"}; + return new[] {"wav"}; } }