mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-07 09:56:59 +00:00
Fix usage of TrueType fonts on Linux/Allegro port
This commit is contained in:
parent
8a738bd440
commit
ede5412d5e
@ -185,7 +185,10 @@ retry:;
|
||||
((backdrop & fd.redMask) >> fd.redShift),
|
||||
((backdrop & fd.greenMask) >> fd.greenShift),
|
||||
((backdrop & fd.blueMask) >> fd.blueShift),
|
||||
((backdrop & fd.alphaMask) >> fd.alphaShift));
|
||||
// Backdrop color is always opaque (needed for
|
||||
// Allegro port because it doesn't contain the
|
||||
// alpha=255)
|
||||
255);
|
||||
|
||||
gfx::Color output = gfx::rgba(gfx::getr(fg),
|
||||
gfx::getg(fg),
|
||||
|
Loading…
Reference in New Issue
Block a user