INI option to hide RBF datecode.

This commit is contained in:
sorgelig
2018-12-23 22:37:04 +08:00
parent 53ca769890
commit b6e1b127ca
5 changed files with 12 additions and 0 deletions

View File

@@ -2440,6 +2440,12 @@ void user_io_kbd(uint16_t key, int press)
if (press) setBrightness(BRIGHTNESS_UP, 0);
}
else
if (key == KEY_F2 && osd_is_visible)
{
if (press == 1) cfg.rbf_hide_datecode = !cfg.rbf_hide_datecode;
PrintDirectory();
}
else
if ((core_type == CORE_TYPE_MINIMIG2) ||
(core_type == CORE_TYPE_MIST) ||
(core_type == CORE_TYPE_ARCHIE) ||