summaryrefslogtreecommitdiff
path: root/AnimationInterpolate.c
diff options
context:
space:
mode:
Diffstat (limited to 'AnimationInterpolate.c')
-rw-r--r--AnimationInterpolate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/AnimationInterpolate.c b/AnimationInterpolate.c
index 2ff4a8b..f24c678 100644
--- a/AnimationInterpolate.c
+++ b/AnimationInterpolate.c
@@ -3,8 +3,8 @@
#define NUM_INTERPOLATE(a, b, perc) (a * (1.0 - (perc)) + b * (perc))
-byte4
-colorInterpolate(byte4 ina, byte4 inb, double percentage) {
+color
+colorInterpolate(color ina, color inb, double percentage) {
ARGB a, b;
ARGB_set(&a, ina);
ARGB_set(&b, inb);