mirror of https://github.com/stella-emu/stella.git
And now a warning generated by g++ that clang++ missed.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2721 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
2bc7b72b7f
commit
31b1d849fe
|
@ -705,7 +705,7 @@ void Dialog::TabFocus::appendFocusList(WidgetArray& list)
|
|||
{
|
||||
int active = widget->getActiveTab();
|
||||
|
||||
if(active >= 0 && active < focus.size())
|
||||
if(active >= 0 && active < (int)focus.size())
|
||||
list.push_back(focus[active].list);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue