keep some #if 0'ed code in sync
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13283 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
caea20e75f
commit
9270ada23a
1 changed files with 9 additions and 1 deletions
|
@ -380,7 +380,15 @@ bool enc_config_menu(struct encoder_config *cfg)
|
||||||
{
|
{
|
||||||
if (!rec_format_ok(cfg->rec_format))
|
if (!rec_format_ok(cfg->rec_format))
|
||||||
return false;
|
return false;
|
||||||
|
if (enc_data[cfg->rec_format].menu)
|
||||||
|
{
|
||||||
return enc_data[cfg->rec_format].menu(cfg, false);
|
return enc_data[cfg->rec_format].menu(cfg, false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
gui_syncsplash(HZ, str(LANG_NO_SETTINGS));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
} /* enc_config_menu */
|
} /* enc_config_menu */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue