Merge pull request #245 from scatterflower/realization_fix

Check for custom realization sound when using effects list
This commit is contained in:
scatterflower 2020-08-16 07:12:29 -05:00 committed by GitHub
commit 34604742f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}