fix FS#10993 - "No Settings" doesnt get voiced because it uses str() instead of ID2P() macro
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26194 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7042d9516b
commit
3af1bf04b1
1 changed files with 2 additions and 2 deletions
|
@ -400,7 +400,7 @@ bool enc_config_menu(struct encoder_config *cfg)
|
|||
}
|
||||
else
|
||||
{
|
||||
splash(HZ, str(LANG_NO_SETTINGS));
|
||||
splash(HZ, ID2P(LANG_NO_SETTINGS));
|
||||
return false;
|
||||
}
|
||||
} /* enc_config_menu */
|
||||
|
@ -458,7 +458,7 @@ bool enc_global_config_menu(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
splash(HZ, str(LANG_NO_SETTINGS));
|
||||
splash(HZ, ID2P(LANG_NO_SETTINGS));
|
||||
return false;
|
||||
}
|
||||
} /* enc_global_config_menu */
|
||||
|
|
Loading…
Reference in a new issue