diff options
| author | Crystalwarrior <Varsash@Gmail.com> | 2021-01-29 15:09:35 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-29 15:09:35 +0300 |
| commit | 9628ba6b079cb7c8df0253761231db721999da33 (patch) | |
| tree | 0c65295ed5339bbcb5113573a9becd3f13472456 | |
| parent | 639d4738db70388beca94a219d4f48d6b7356b07 (diff) | |
fix looping effects not looping (#444)
tested by @in1tiate and said to be working
| -rw-r--r-- | src/courtroom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 1fc59830..751f9a8d 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -2536,7 +2536,7 @@ void Courtroom::do_effect(QString fx_name, QString fx_sound, QString p_char, // Static effects will linger. ui_vp_effect->set_static_duration(0); ui_vp_effect->set_max_duration(0); - ui_vp_effect->load_image(effect, false); + ui_vp_effect->load_image(effect, true); } void Courtroom::play_char_sfx(QString sfx_name) |
