1
0

added default fallthrough clause to switch at line 178 of src/UI/Window.cpp

This commit is contained in:
Tycho Bickerstaff 2013-12-07 23:42:43 +00:00
parent ae369618ca
commit c1dbe8a19e

View File

@ -201,6 +201,10 @@ void cWindow::Clicked(
case caRightPaintProgress: OnPaintProgress(a_Player, a_SlotNum); return;
case caLeftPaintEnd: OnLeftPaintEnd (a_Player); return;
case caRightPaintEnd: OnRightPaintEnd(a_Player); return;
default:
{
break;
}
}
if (a_SlotNum < 0)