From c423a5ee5621a4cc386cb6c7147ec7e010db32de Mon Sep 17 00:00:00 2001 From: Crystalwarrior Date: Sun, 26 Jul 2020 19:21:58 +0300 Subject: [PATCH] Make music 'fade out previous' an effect enabled by default (#196) Simply make the "FADE_OUT" music effect flag by default so more users experience the SMOOTH FADE OUT magic by accident and praise the based client. --- include/courtroom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/courtroom.h b/include/courtroom.h index 259a7ed..af4b69e 100644 --- a/include/courtroom.h +++ b/include/courtroom.h @@ -415,7 +415,7 @@ private: QString effect = ""; // Music effect flags we want to send to server when we play music - int music_flags = 0; + int music_flags = FADE_OUT; int defense_bar_state = 0; int prosecution_bar_state = 0;