diff options
| author | Crystalwarrior <varsash@gmail.com> | 2020-03-22 22:26:46 +0300 |
|---|---|---|
| committer | Crystalwarrior <varsash@gmail.com> | 2020-03-22 22:26:46 +0300 |
| commit | 825042b32ce9f7d672ee0ba33b1f7b2e759df14c (patch) | |
| tree | 58d9bffddc55320eac3e744568f8a8a8347f8c9f /src/text_file_functions.cpp | |
| parent | 71967d44fd4a7d8955524045d174847e985c7a15 (diff) | |
Fix a really obscure bug breaking custom realization sound effects (realization=thing) char.ini definition not starting from base/sounds/general folder
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 432f61a0..c3948123 100644 --- a/src/text_file_functions.cpp +++ b/src/text_file_functions.cpp @@ -936,7 +936,7 @@ QString AOApplication::get_custom_realization(QString p_char) if (f_result == "") return get_sfx("realization"); - else return get_sfx_suffix(f_result); + else return get_sfx_suffix(get_sounds_path(f_result)); } bool AOApplication::get_blank_blip() |
