- fix -Wlogical-op errors

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2017-11-03 09:36:19 +01:00
committed by Thilo Graf
parent 3fd544737a
commit a65a63982d

View File

@@ -4061,7 +4061,7 @@ void CNeutrinoApp::tvMode( bool rezap )
CRecordManager::getInstance()->StopAutoRecord();
}
#endif
if (mode != mode_webtv || mode != mode_webradio) {
if (mode != mode_webtv && mode != mode_webradio) {
frameBuffer->useBackground(false);
frameBuffer->paintBackground();
}
@@ -4309,7 +4309,7 @@ void CNeutrinoApp::radioMode( bool rezap)
#endif
CRecordManager::getInstance()->StopAutoRecord();
if (mode != mode_webtv || mode != mode_webradio) {
if (mode != mode_webtv && mode != mode_webradio) {
frameBuffer->useBackground(false);
frameBuffer->paintBackground();
}