aboutsummaryrefslogtreecommitdiff
path: root/src/text_file_functions.cpp
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-03-25 13:58:59 +0100
committerGitHub <noreply@github.com>2022-03-25 15:58:59 +0300
commite0c67124a621321ef20fbfd460e79a0fea063740 (patch)
treeec4f713c88696843a6c0731e86c8b5e4fcd5bb4c /src/text_file_functions.cpp
parent49837a540d2835396741d4a7a195a118285db63f (diff)
Midi music (#614)
* add bassmidi everywhere but CI * hello CI please don't ban me from github * add lib and open midi files with the lib * overlooked windows CI * yes, overwrite everything * add tracker support * add file formats that bass supports * forgot .mid smh * load all plugins in one function
Diffstat (limited to 'src/text_file_functions.cpp')
-rw-r--r--src/text_file_functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text_file_functions.cpp b/src/text_file_functions.cpp
index e3a285d4..b0209411 100644
--- a/src/text_file_functions.cpp
+++ b/src/text_file_functions.cpp
@@ -515,7 +515,7 @@ QString AOApplication::get_court_sfx(QString p_identifier, QString p_misc)
QString AOApplication::get_sfx_suffix(VPath sound_to_check)
{
return get_real_suffixed_path(sound_to_check,
- {".opus", ".ogg", ".mp3", ".wav" });
+ {".opus", ".ogg", ".mp3", ".wav", ".mid", ".midi", ".xm", ".it", ".s3m", ".mod", ".mtm", ".umx" });
}
QString AOApplication::get_image_suffix(VPath path_to_check, bool static_image)