neutrino: force new keys for pip

Origin commit data
------------------
Commit: ebeb02309c
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-03-15 (Mon, 15 Mar 2021)

Origin message was:
------------------
- neutrino: force new keys for pip
This commit is contained in:
vanhofen
2021-03-15 23:51:54 +01:00
parent aa364e0925
commit 0f44ea9f6c
2 changed files with 11 additions and 1 deletions

View File

@@ -1439,6 +1439,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"