Skip to content

Commit

Permalink
FlxBitmapText: fix alpha not working, closes #1877
Browse files Browse the repository at this point in the history
  • Loading branch information
Gama11 committed Jul 26, 2016
1 parent 24a857d commit 5f76de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flixel/text/FlxBitmapText.hx
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ class FlxBitmapText extends FlxSprite

override private function set_alpha(value:Float):Float
{
alpha = value;
super.set_alpha(value);
if (FlxG.renderBlit)
{
pendingTextBitmapChange = true;
Expand Down

0 comments on commit 5f76de6

Please sign in to comment.