diff options
| author | Leifa <26681464+TrickyLeifa@users.noreply.github.com> | 2024-07-07 15:04:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-07 15:04:49 +0200 |
| commit | f59b41fe08b530e44889b1689de54e958ae3cdd2 (patch) | |
| tree | 6b03ad07a5e700f67ae1946b2397fb0277d9ed55 /src/text_file_functions.cpp | |
| parent | 03025119c4a7316e83f5336756d3afc9d1ff82b1 (diff) | |
Removed MIDI, removed undocumented (yet supported) formats (#1008)
* Removed MIDI, removed undocumented (yet supported) formats
Resolve #1006
* Adjusted CI for MIDI removal
Diffstat (limited to 'src/text_file_functions.cpp')
| -rw-r--r-- | src/text_file_functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text_file_functions.cpp b/src/text_file_functions.cpp index 35efe20c..763efb58 100644 --- a/src/text_file_functions.cpp +++ b/src/text_file_functions.cpp @@ -360,7 +360,7 @@ QString AOApplication::get_court_sfx(QString p_identifier, QString p_misc) QString AOApplication::get_sfx_suffix(VPath sound_to_check) { - QStringList suffixes = {".opus", ".ogg", ".mp3", ".wav", ".mid", ".midi", ".xm", ".it", ".s3m", ".mod", ".mtm", ".umx"}; + QStringList suffixes = {".opus", ".ogg", ".mp3", ".wav"}; // Check if we were provided a direct filepath with a suffix already QString path = sound_to_check.toQString(); // Loop through our suffixes |
