diff options
| author | scatterflower <marisaposs@gameboyprinter.moe> | 2020-08-16 04:03:56 -0500 |
|---|---|---|
| committer | scatterflower <marisaposs@gameboyprinter.moe> | 2020-08-16 04:03:56 -0500 |
| commit | 002086343a19679b7fb8d8fed8302510456c05c2 (patch) | |
| tree | 42dd650c40ccfb4b0577b851d9e1c0f9b93d76b0 /src/text_file_functions.cpp | |
| parent | ec1c95bdb33dd063880c4cb6c3c9c3cf5d0ed454 (diff) | |
Check for custom realization sound when using effects list
Diffstat (limited to 'src/text_file_functions.cpp')
| -rw-r--r-- | src/text_file_functions.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/text_file_functions.cpp b/src/text_file_functions.cpp index 39754f39..d2ed20ab 100644 --- a/src/text_file_functions.cpp +++ b/src/text_file_functions.cpp @@ -908,6 +908,11 @@ QString AOApplication::get_effect_sound(QString fx_name, QString p_char) f_result = read_design_ini(fx_name, default_path); } } + + if(fx_name == "realization"){ + f_result = get_custom_realization(p_char); + } + return f_result; } |
