mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
fix -Wlogical-op errors
Signed-off-by: Thilo Graf <dbt@novatux.de>
Origin commit data
------------------
Commit: a65a63982d
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-11-03 (Fri, 03 Nov 2017)
Origin message was:
------------------
- fix -Wlogical-op errors
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -4061,7 +4061,7 @@ void CNeutrinoApp::tvMode( bool rezap )
|
|||||||
CRecordManager::getInstance()->StopAutoRecord();
|
CRecordManager::getInstance()->StopAutoRecord();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (mode != mode_webtv || mode != mode_webradio) {
|
if (mode != mode_webtv && mode != mode_webradio) {
|
||||||
frameBuffer->useBackground(false);
|
frameBuffer->useBackground(false);
|
||||||
frameBuffer->paintBackground();
|
frameBuffer->paintBackground();
|
||||||
}
|
}
|
||||||
@@ -4309,7 +4309,7 @@ void CNeutrinoApp::radioMode( bool rezap)
|
|||||||
#endif
|
#endif
|
||||||
CRecordManager::getInstance()->StopAutoRecord();
|
CRecordManager::getInstance()->StopAutoRecord();
|
||||||
|
|
||||||
if (mode != mode_webtv || mode != mode_webradio) {
|
if (mode != mode_webtv && mode != mode_webradio) {
|
||||||
frameBuffer->useBackground(false);
|
frameBuffer->useBackground(false);
|
||||||
frameBuffer->paintBackground();
|
frameBuffer->paintBackground();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user