From 2f58ab1a1297b77e04c12e24fff683eefdaf2737 Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 13 Oct 2023 15:04:07 +0200 Subject: [PATCH] Fix default tuner resolution Signed-off-by: falkTX --- mod/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/host.py b/mod/host.py index 0f7d2883..23a46898 100644 --- a/mod/host.py +++ b/mod/host.py @@ -331,7 +331,7 @@ def __init__(self, hmi, prefs, msg_callback): self.profile = Profile(self.profile_apply, self.descriptor) self.swapped_audio_channels = self.descriptor.get('swapped_audio_channels', False) - self.tuner_resolution = self.descriptor.get('tuner_resolution', 16) + self.tuner_resolution = self.descriptor.get('tuner_resolution', 1) self.current_tuner_port = self.prefs.get("tuner-input-port", 1, int) self.current_tuner_mute = self.prefs.get("tuner-mutes-outputs", False, bool)