admin
2021-07-28 c0269fcfa876b9c5cf309b2006462b4d09c5ef95
library-NineOldAndroids/src/com/nineoldandroids/animation/ArgbEvaluator.java
@@ -51,9 +51,9 @@
        int endG = (endInt >> 8) & 0xff;
        int endB = endInt & 0xff;
        return (int)((startA + (int)(fraction * (endA - startA))) << 24) |
                (int)((startR + (int)(fraction * (endR - startR))) << 16) |
                (int)((startG + (int)(fraction * (endG - startG))) << 8) |
                (int)((startB + (int)(fraction * (endB - startB))));
        return ((startA + (int)(fraction * (endA - startA))) << 24) |
                ((startR + (int)(fraction * (endR - startR))) << 16) |
                ((startG + (int)(fraction * (endG - startG))) << 8) |
                (startB + (int)(fraction * (endB - startB)));
    }
}