Skip to content

Commit

Permalink
dm7020hd: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BPanther committed Jul 14, 2024
1 parent 8e61f7c commit 7f86a97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gui/vfd_setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ bool CLCDNotifier::changeNotify(const neutrino_locale_t, void * Data)
int state = *(int *)Data;

dprintf(DEBUG_NORMAL, "CLCDNotifier: state: %d\n", state);
#if BOXMODEL_DM8000 || BOXMODEL_DM7080 || BOXMODEL_DM7020HD
#if BOXMODEL_DM8000 || BOXMODEL_DM7020HD || BOXMODEL_DM7080
CVFD::getInstance()->setPower(state);
#else
CVFD::getInstance()->setPower(1);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/videosettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ int CVideoSettings::showVideoSetup()
videosetup->addItem(zm);
}

#if BOXMODEL_VUPLUS_ARM || BOXMODEL_DM820 || BOXMODEL_DM7080 || BOXMODEL_DM900 || BOXMODEL_DM920
#if BOXMODEL_VUPLUS_ARM || BOXMODEL_DM820 || BOXMODEL_DM7020HD || BOXMODEL_DM7080 || BOXMODEL_DM900 || BOXMODEL_DM920
if (file_exists("/proc/stb/video/hdmi_colorspace"))
#else
if (file_exists("/proc/stb/video/hdmi_colorimetry_choices"))
Expand Down
2 changes: 1 addition & 1 deletion src/zapit/src/zapit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2149,7 +2149,7 @@ bool CZapit::StopPlayBack(bool send_pmt, bool __attribute__ ((unused)) blank)
if (playbackStopForced)
return false;

#if BOXMODEL_DM820 || BOXMODEL_DM7080 || BOXMODEL_DM900 || BOXMODEL_DM920
#if BOXMODEL_DM820 || BOXMODEL_DM7020HD || BOXMODEL_DM7080 || BOXMODEL_DM900 || BOXMODEL_DM920
videoDecoder->Stop(standby ? false : blank);
#else
videoDecoder->Stop(false);
Expand Down

0 comments on commit 7f86a97

Please sign in to comment.