Slightly more compact boundary check.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20691 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2009-04-11 23:07:02 +00:00
parent 76328bbfda
commit fbe39975cf

View File

@ -96,10 +96,8 @@ void gui_scrollbar_draw(struct screen * screen, int x, int y,
/* Boundary check to make sure that height is reasonable, otherwise nothing
* to do
*/
if(height<2 || width<2)
{
if ((inner_wd | inner_ht) < 0)
return;
}
if (flags & HORIZONTAL)
inner_len = inner_wd;