From 24a61bddd6ab67521eb24b70a757a7042deb50b1 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 14 Apr 2013 17:13:38 +0200 Subject: [PATCH] neutrino: fix signed/unsigned warning --- src/neutrino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index e6060f166..ea457104e 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -2067,7 +2067,7 @@ void CNeutrinoApp::RealRun(CMenuWidget &mainMenu) saveSetup(NEUTRINO_SETTINGS_FILE); } } - else if( ((msg == CRCInput::RC_tv) || (msg == CRCInput::RC_radio)) && ((neutrino_msg_t)g_settings.key_tvradio_mode == CRCInput::RC_nokey)) { + else if (((msg == CRCInput::RC_tv) || (msg == CRCInput::RC_radio)) && (g_settings.key_tvradio_mode == (int)CRCInput::RC_nokey)) { switchTvRadioMode();//used with defined default tv/radio rc key } else if( msg == (neutrino_msg_t) g_settings.key_tvradio_mode ) {