CMenuItem: reduce scope of str, trivial

This commit is contained in:
2014-04-09 17:19:30 +02:00
parent 5f7f453bd7
commit 9dc59ec556

View File

@@ -142,10 +142,9 @@ void CMenuItem::paintItemCaption(const bool select_mode, const int &item_height,
{
if (select_mode)
{
char str[256];
if (right_text != NULL)
{
char str[256];
snprintf(str, 255, "%s %s", left_text, right_text);
CVFD::getInstance()->showMenuText(0, str, -1, true);
}