aboutsummaryrefslogtreecommitdiff
path: root/src/text_file_functions.cpp
diff options
context:
space:
mode:
authorscatterflower <2956568+scatterflower@users.noreply.github.com>2020-08-16 07:12:29 -0500
committerGitHub <noreply@github.com>2020-08-16 07:12:29 -0500
commit34604742f15c35c96ca618300cc2861d7782f528 (patch)
tree7af142a06e89d359537ef28979c4e1bd25c887cc /src/text_file_functions.cpp
parentb04b22b33ab7e1925b5f2a7d574e623c601717c5 (diff)
parent002086343a19679b7fb8d8fed8302510456c05c2 (diff)
Merge pull request #245 from scatterflower/realization_fix
Check for custom realization sound when using effects list
Diffstat (limited to 'src/text_file_functions.cpp')
-rw-r--r--src/text_file_functions.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/text_file_functions.cpp b/src/text_file_functions.cpp
index 4ceb29a3..45dd34f6 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;
}