From 2408387fbae78d89febffb5ec1cfa28e6622b644 Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Wed, 9 May 2012 18:06:45 +0000 Subject: [PATCH] oops --- animations/fpmath_patterns.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/animations/fpmath_patterns.c b/animations/fpmath_patterns.c index 1ad535d..55807d6 100644 --- a/animations/fpmath_patterns.c +++ b/animations/fpmath_patterns.c @@ -473,11 +473,11 @@ void plasma(void) #ifndef __AVR__ fixPattern(0, fixScaleUp(75), 0.1 * FIX, 80, fixAnimPlasma, &r); #else - #ifndef FP_PSYCHO_DELAY - #define FP_PSYCHO_DELAY 1 + #ifndef FP_PLASMA_DELAY + #define FP_PLASMA_DELAY 1 #endif fixPattern(0, fixScaleUp(60), 0.1 * FIX, - FP_PSYCHO_DELAY, fixAnimPlasma, &r); + FP_PLASMA_DELAY, fixAnimPlasma, &r); #endif /* __AVR__ */ } @@ -541,10 +541,10 @@ void psychedelic(void) #ifndef __AVR__ fixPattern(0, fixScaleUp(75), 0.1 * FIX, 80, fixAnimPsychedelic, &r); #else - #ifndef FP_PLASMA_DELAY - #define FP_PLASMA_DELAY 15 + #ifndef FP_PSYCHO_DELAY + #define FP_PSYCHO_DELAY 15 #endif - fixPattern(0, fixScaleUp(60), 0.1 * FIX, FP_PLASMA_DELAY, + fixPattern(0, fixScaleUp(60), 0.1 * FIX, FP_PSYCHO_DELAY, fixAnimPsychedelic, &r); #endif /* __AVR__ */ }