From 8c89787269ab5461030b1143aab3964c7a3b5917 Mon Sep 17 00:00:00 2001 From: jojo61 Date: Sun, 21 Mar 2021 14:20:24 +0100 Subject: [PATCH] Fixed volume level (with linearize) after changing the play mode. --- softhdcuvid.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/softhdcuvid.cpp b/softhdcuvid.cpp index 5767df6..1d00d15 100644 --- a/softhdcuvid.cpp +++ b/softhdcuvid.cpp @@ -63,7 +63,7 @@ extern void ToggleLUT(); /// vdr-plugin version number. /// Makefile extracts the version number for generating the file name /// for the distribution archive. -static const char *const VERSION = "3.4.1" +static const char *const VERSION = "3.4.2" #ifdef GIT_REV "-GIT" GIT_REV #endif @@ -2645,7 +2645,7 @@ bool cSoftHdDevice::SetPlayMode(ePlayMode play_mode) Resume(); SuspendMode = NOT_SUSPENDED; } - + SetVolume(cDevice::CurrentVolume(), true); return::SetPlayMode(play_mode); }