mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	whoops
This commit is contained in:
		
							parent
							
								
									b9b2244b82
								
							
						
					
					
						commit
						84395e8a04
					
				| @ -67,7 +67,7 @@ extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS]; | |||||||
| static matrix_row_t get_real_keys(uint8_t row, matrix_row_t rowdata){ | static matrix_row_t get_real_keys(uint8_t row, matrix_row_t rowdata){ | ||||||
|     matrix_row_t out = 0; |     matrix_row_t out = 0; | ||||||
|     for (int col = 0; col < MATRIX_COLS; col++) { |     for (int col = 0; col < MATRIX_COLS; col++) { | ||||||
|         if (pgm_read_byte(&keymaps[0][row][col]) && ((rowdata & (1<<col)))){ |         if (pgm_read_byte(&keymaps[0][row][col]) && (rowdata & (1<<col))){ | ||||||
|             out |= 1<<col; |             out |= 1<<col; | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| @ -83,7 +83,7 @@ static inline bool countones(matrix_row_t row) | |||||||
| static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) | static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) | ||||||
| { | { | ||||||
|     rowdata = get_real_keys(row, rowdata); |     rowdata = get_real_keys(row, rowdata); | ||||||
|     if (((rowdata - 1) & rowdata) == 0){ |     if ((countones(rowdata)) == 0){ | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|     /* No ghost exists when less than 2 keys are down on the row.
 |     /* No ghost exists when less than 2 keys are down on the row.
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jeremiah
						Jeremiah