mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 01:11:06 +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();
|
||||
}
|
||||
#endif
|
||||
if (mode != mode_webtv || mode != mode_webradio) {
|
||||
if (mode != mode_webtv && mode != mode_webradio) {
|
||||
frameBuffer->useBackground(false);
|
||||
frameBuffer->paintBackground();
|
||||
}
|
||||
@@ -4537,7 +4537,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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user