forked from mirrors/qmk_userspace
		
	Format code according to conventions (#15195)
This commit is contained in:
		
					parent
					
						
							
								45f4f446fb
							
						
					
				
			
			
				commit
				
					
						25b087925c
					
				
			
		
					 2 changed files with 16 additions and 12 deletions
				
			
		| 
						 | 
					@ -20,12 +20,16 @@ RGB_MATRIX_EFFECT(PIXEL_RAIN)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static bool PIXEL_RAIN(effect_params_t* params) {
 | 
					static bool PIXEL_RAIN(effect_params_t* params) {
 | 
				
			||||||
    static uint32_t wait_timer = 0;
 | 
					    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); }
 | 
					    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) {
 | 
					    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) {
 | 
					        if (off) {
 | 
				
			||||||
            rgb_matrix_set_color(i, 0, 0, 0);
 | 
					            rgb_matrix_set_color(i, 0, 0, 0);
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue