From 9628ba6b079cb7c8df0253761231db721999da33 Mon Sep 17 00:00:00 2001 From: Crystalwarrior Date: Fri, 29 Jan 2021 15:09:35 +0300 Subject: [PATCH] fix looping effects not looping (#444) tested by @in1tiate and said to be working --- src/courtroom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 1fc5983..751f9a8 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)