INI option to disable logo in Menu core.

This commit is contained in:
sorgelig
2020-06-18 10:54:38 +08:00
parent 176369ab1f
commit 19cf3890d5
4 changed files with 7 additions and 1 deletions

View File

@@ -70,6 +70,7 @@ static const ini_var_t ini_vars[] =
{ "JAMMA_PID", (void*)(&(cfg.jamma_pid)), UINT16, 0, 0xFFFF },
{ "SNIPER_MODE", (void*)(&(cfg.sniper_mode)), UINT8, 0, 1 },
{ "BROWSE_EXPAND", (void*)(&(cfg.browse_expand)), UINT8, 0, 1 },
{ "LOGO", (void*)(&(cfg.logo)), UINT8, 0, 1 },
};
static const int nvars = (int)(sizeof(ini_vars) / sizeof(ini_var_t));
@@ -315,5 +316,6 @@ void cfg_parse()
cfg.fb_terminal = 1;
cfg.controller_info = 6;
cfg.browse_expand = 1;
cfg.logo = 1;
ini_parse(altcfg());
}