- neutrino: force new keys for pip

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-03-15 23:51:54 +01:00
committed by Thilo Graf
parent 4afe44f906
commit 98a22dfd9c
2 changed files with 11 additions and 1 deletions

View File

@@ -1381,6 +1381,16 @@ void CNeutrinoApp::upgradeSetup(const char * fname)
g_settings.glcd_enable = 0;
#endif
}
if (g_settings.version_pseudo < "20212344000000")
{
// force new keys for pip
g_settings.key_switchformat = CRCInput::RC_nokey;
g_settings.key_next43mode = CRCInput::RC_nokey;
g_settings.key_pip_close = CRCInput::RC_prev;
g_settings.key_pip_setup = CRCInput::RC_nokey;
g_settings.key_pip_swap = CRCInput::RC_next;
}
g_settings.version_pseudo = NEUTRINO_VERSION_PSEUDO;
configfile.setString("version_pseudo", g_settings.version_pseudo);

View File

@@ -1 +1 @@
#define NEUTRINO_VERSION_PSEUDO "20201220000000"
#define NEUTRINO_VERSION_PSEUDO "20212344000000"