Skip to content

Commit

Permalink
[font] fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fairbird committed Jan 21, 2024
1 parent c9a6c27 commit a40628e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gdi/font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ void eTextPara::blit(gDC &dc, const ePoint &offset, const gRGB &cbackground, con
int b = (*s++) >> 4;
if (b)
{
unsigned char frame_a = (*td) >> 24 & 0xFF;
//unsigned char frame_a = (*td) >> 24 & 0xFF;
unsigned char frame_r = (*td) >> 16 & 0xFF;
unsigned char frame_g = (*td) >> 8 & 0xFF;
unsigned char frame_b = (*td) & 0xFF;
Expand Down

0 comments on commit a40628e

Please sign in to comment.