1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-24 17:43:36 +02:00

Fixed SoundEffectReader incorrectly claiming it could read ogg and mp3 files

This commit is contained in:
Ell 2022-05-10 15:58:47 +02:00
parent acd15fea14
commit 874be1fd6e
2 changed files with 4 additions and 1 deletions

View file

@ -44,6 +44,9 @@ Removals
Improvements Improvements
- Premultiply textures when using RawContentManager - Premultiply textures when using RawContentManager
Fixes
- Fixed SoundEffectReader incorrectly claiming it could read ogg and mp3 files
## 5.3.0 ## 5.3.0
### MLEM ### MLEM
Additions Additions

View file

@ -12,7 +12,7 @@ namespace MLEM.Data.Content {
/// <inheritdoc /> /// <inheritdoc />
public override string[] GetFileExtensions() { public override string[] GetFileExtensions() {
return new[] {"ogg", "wav", "mp3"}; return new[] {"wav"};
} }
} }