diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plot/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plot/common.c b/src/plot/common.c index b051131..5f55686 100644 --- a/src/plot/common.c +++ b/src/plot/common.c @@ -213,7 +213,7 @@ glyph8(nsfb_t *nsfb, for (yloop = 0; yloop < height; yloop++) { for (xloop = 0; xloop < width; xloop++) { - abpixel = (pixel[((yoff + yloop) * pitch) + xloop + xoff] << 24) | fgcol; + abpixel = ((unsigned)pixel[((yoff + yloop) * pitch) + xloop + xoff] << 24) | fgcol; if ((abpixel & 0xFF000000) != 0) { /* pixel is not transparent */ if ((abpixel & 0xFF000000) != 0xFF000000) { |