mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-04 07:12:33 +01:00 
			
		
		
		
	[Keyboard] Fix suspend issues on ergodox_ez. (#15300)
Co-authored-by: Mewp <git@mewp.pl>
This commit is contained in:
		
							parent
							
								
									ffebc0407c
								
							
						
					
					
						commit
						c05d3eb365
					
				@ -70,7 +70,7 @@ void matrix_init_custom(void) {
 | 
				
			|||||||
// Reads and stores a row, returning
 | 
					// Reads and stores a row, returning
 | 
				
			||||||
// whether a change occurred.
 | 
					// whether a change occurred.
 | 
				
			||||||
static inline bool store_raw_matrix_row(uint8_t index) {
 | 
					static inline bool store_raw_matrix_row(uint8_t index) {
 | 
				
			||||||
    matrix_row_t temp = read_cols(index);
 | 
					    matrix_row_t temp = 0x3F & read_cols(index);
 | 
				
			||||||
    if (raw_matrix[index] != temp) {
 | 
					    if (raw_matrix[index] != temp) {
 | 
				
			||||||
        raw_matrix[index] = temp;
 | 
					        raw_matrix[index] = temp;
 | 
				
			||||||
        return true;
 | 
					        return true;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user