Merge pull request #3411 from maciekczwa/master

fixed stroke font color with channel color values other than 255
This commit is contained in:
James Chen 2013-08-15 20:28:49 -07:00
commit 041b14f3ff
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ public class Cocos2dxBitmap {
final Paint paintStroke = Cocos2dxBitmap.newPaint(pFontName, pFontSize, horizontalAlignment);
paintStroke.setStyle(Paint.Style.STROKE);
paintStroke.setStrokeWidth(strokeSize * 0.5f);
paintStroke.setARGB(255, (int)strokeR * 255, (int)strokeG * 255, (int)strokeB * 255);
paintStroke.setARGB(255, (int) (strokeR * 255), (int) (strokeG * 255), (int) (strokeB * 255));
x = 0;
y = Cocos2dxBitmap.computeY(fontMetricsInt, pHeight, textProperty.mTotalHeight, verticalAlignment);