Eliminado la variable global keystates

This commit is contained in:
2022-10-20 14:03:25 +02:00
parent 52ce550ba6
commit 04844b0a5b
3 changed files with 4 additions and 5 deletions

View File

@@ -137,7 +137,7 @@ void Menu::setRectSize()
//y dos por la izquierda, uno de ellos para el selector
for (i = 0; i < mTotalItems; i++)
{
if (mMenuItem[i].label.length() > maxLength)
if ((int)mMenuItem[i].label.length() > maxLength)
{
maxLength = mMenuItem[i].label.length();
}