Format code according to conventions (#15195)

master
QMK Bot 2021-11-17 12:42:00 -08:00 committed by GitHub
parent 45f4f446fb
commit 25b087925c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 12 deletions

View File

@ -20,12 +20,16 @@ RGB_MATRIX_EFFECT(PIXEL_RAIN)
static bool PIXEL_RAIN(effect_params_t* params) {
static uint32_t wait_timer = 0;
if (wait_timer > g_rgb_timer) { return false; }
if (wait_timer > g_rgb_timer) {
return false;
}
inline uint32_t interval(void) { return 500 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16); }
bool rain_pixel(uint8_t i, effect_params_t * params, bool off) {
if (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) { return true; }
if (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) {
return true;
}
if (off) {
rgb_matrix_set_color(i, 0, 0, 0);
} else {