mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 09:51:13 +02:00
fix -Wlogical-op errors
Origin commit data
------------------
Commit: fe487f3976
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-11-03 (Fri, 03 Nov 2017)
Origin message was:
------------------
- fix -Wlogical-op errors
This commit is contained in:
@@ -4274,7 +4274,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();
|
||||||
}
|
}
|
||||||
@@ -4537,7 +4537,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