Save one branch for archs without conditional execution (e.g. coldfire).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23355 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
78c956d73b
commit
17d7f023b7
1 changed files with 2 additions and 3 deletions
|
@ -907,9 +907,8 @@ void ICODE_ATTR lcd_bitmap_transparent_part(const fb_data *src, int src_x,
|
|||
if (data != TRANSPARENT_COLOR)
|
||||
{
|
||||
if (data == REPLACEWITHFG_COLOR)
|
||||
*dst_row = fg;
|
||||
else
|
||||
*dst_row = data;
|
||||
data = fg;
|
||||
*dst_row = data;
|
||||
}
|
||||
}
|
||||
while (++dst_row < row_end);
|
||||
|
|
Loading…
Reference in a new issue