mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Account for analog buttons when checking for used buttons
circle mod and analog_from_buttons weren't being accounted for.
This commit is contained in:
		
							parent
							
								
									b3cab3c450
								
							
						
					
					
						commit
						0e2edbb0d2
					
				
					 1 changed files with 11 additions and 0 deletions
				
			
		|  | @ -350,6 +350,17 @@ QList<QKeySequence> ConfigureInput::GetUsedKeyboardKeys() { | ||||||
|             list << QKeySequence(button_param.Get("code", 0)); |             list << QKeySequence(button_param.Get("code", 0)); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  | 
 | ||||||
|  |     for (int analog_id = 0; analog_id < Settings::NativeAnalog::NumAnalogs; analog_id++) { | ||||||
|  |         auto analog_param = analogs_param[analog_id]; | ||||||
|  |         if (analog_param.Get("engine", "") == "analog_from_button") { | ||||||
|  |             for (int sub_button_id = 0; sub_button_id < ANALOG_SUB_BUTTONS_NUM; sub_button_id++) { | ||||||
|  |                 auto sub_button = Common::ParamPackage{analog_param.Get(analog_sub_buttons[sub_button_id], "")}; | ||||||
|  |                 list << QKeySequence(sub_button.Get("code", 0)); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|     return list; |     return list; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue