Skip to content

Commit

Permalink
dm-all: fix SIG
Browse files Browse the repository at this point in the history
  • Loading branch information
BPanther committed Jun 19, 2024
1 parent 074a740 commit 938ecdd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/zapit/src/frontend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 938ecdd

Please sign in to comment.