mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-25 14:08:34 +01:00
Fixed SoundEffectReader incorrectly claiming it could read ogg and mp3 files
This commit is contained in:
parent
acd15fea14
commit
874be1fd6e
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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"};
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue