Fixed compiler warning.
This commit is contained in:
parent
a19119a2f2
commit
52e8df44fd
@ -561,7 +561,7 @@ EventPropagation RibbonWidget::focused(const int playerID)
|
||||
if (m_selection[playerID] != -1)
|
||||
{
|
||||
int selection = m_selection[playerID];
|
||||
if (selection < m_active_children.size())
|
||||
if (selection < (int)m_active_children.size())
|
||||
m_active_children.get(selection)->focused(playerID);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user