From 938ecddd9daa54a49c3102eea4480197bd6fd69a Mon Sep 17 00:00:00 2001 From: BPanther Date: Wed, 19 Jun 2024 14:08:32 +0200 Subject: [PATCH] dm-all: fix SIG --- src/zapit/src/frontend.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/zapit/src/frontend.cpp b/src/zapit/src/frontend.cpp index cb8f86511..d0ba14d39 100644 --- a/src/zapit/src/frontend.cpp +++ b/src/zapit/src/frontend.cpp @@ -779,6 +779,10 @@ uint16_t CFrontend::getSignalStrength(void) const if (!strength && fop(ioctl, FE_READ_SIGNAL_STRENGTH, &strength) < 0 && errno != ERANGE) printf("%s: FE_READ_SIGNAL_STRENGTH failed: %m\n", __FUNCTION__); +#if BOXMODEL_DREAMBOX_ALL + strength = strength * 1.85; +#endif + return strength; }