aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/animations/splash_anim.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/rgb_matrix/animations/splash_anim.h')
-rw-r--r--quantum/rgb_matrix/animations/splash_anim.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/quantum/rgb_matrix/animations/splash_anim.h b/quantum/rgb_matrix/animations/splash_anim.h
index 1415bcc0f..382355e9e 100644
--- a/quantum/rgb_matrix/animations/splash_anim.h
+++ b/quantum/rgb_matrix/animations/splash_anim.h
@@ -1,11 +1,11 @@
1#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED 1#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
2# if !defined(DISABLE_RGB_MATRIX_SPLASH) || !defined(DISABLE_RGB_MATRIX_MULTISPLASH) 2# if defined(ENABLE_RGB_MATRIX_SPLASH) || defined(ENABLE_RGB_MATRIX_MULTISPLASH)
3 3
4# ifndef DISABLE_RGB_MATRIX_SPLASH 4# ifdef ENABLE_RGB_MATRIX_SPLASH
5RGB_MATRIX_EFFECT(SPLASH) 5RGB_MATRIX_EFFECT(SPLASH)
6# endif 6# endif
7 7
8# ifndef DISABLE_RGB_MATRIX_MULTISPLASH 8# ifdef ENABLE_RGB_MATRIX_MULTISPLASH
9RGB_MATRIX_EFFECT(MULTISPLASH) 9RGB_MATRIX_EFFECT(MULTISPLASH)
10# endif 10# endif
11 11
@@ -19,14 +19,14 @@ HSV SPLASH_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dist, uint16_t tick) {
19 return hsv; 19 return hsv;
20} 20}
21 21
22# ifndef DISABLE_RGB_MATRIX_SPLASH 22# ifdef ENABLE_RGB_MATRIX_SPLASH
23bool SPLASH(effect_params_t* params) { return effect_runner_reactive_splash(qsub8(g_last_hit_tracker.count, 1), params, &SPLASH_math); } 23bool SPLASH(effect_params_t* params) { return effect_runner_reactive_splash(qsub8(g_last_hit_tracker.count, 1), params, &SPLASH_math); }
24# endif 24# endif
25 25
26# ifndef DISABLE_RGB_MATRIX_MULTISPLASH 26# ifdef ENABLE_RGB_MATRIX_MULTISPLASH
27bool MULTISPLASH(effect_params_t* params) { return effect_runner_reactive_splash(0, params, &SPLASH_math); } 27bool MULTISPLASH(effect_params_t* params) { return effect_runner_reactive_splash(0, params, &SPLASH_math); }
28# endif 28# endif
29 29
30# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS 30# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
31# endif // !defined(DISABLE_RGB_MATRIX_SPLASH) || !defined(DISABLE_RGB_MATRIX_MULTISPLASH) 31# endif // !defined(ENABLE_RGB_MATRIX_SPLASH) || !defined(ENABLE_RGB_MATRIX_MULTISPLASH)
32#endif // RGB_MATRIX_KEYREACTIVE_ENABLED 32#endif // RGB_MATRIX_KEYREACTIVE_ENABLED