mirror of
				https://github.com/Ryujinx/SDL.git
				synced 2025-11-04 11:54:49 +00:00 
			
		
		
		
	Mac: expose joystick buttons that report themselves as having 'Start' and 'Select' HID usages.
I don't know if any joysticks report those usages for any buttons in practice, but other prominent Mac gaming software exposes them, so we might as well too.
This commit is contained in:
		
							parent
							
								
									51c1d69d13
								
							
						
					
					
						commit
						4ae69e3222
					
				| 
						 | 
					@ -247,6 +247,8 @@ AddHIDElement(const void *value, void *parameter)
 | 
				
			||||||
                            case kHIDUsage_GD_DPadDown:
 | 
					                            case kHIDUsage_GD_DPadDown:
 | 
				
			||||||
                            case kHIDUsage_GD_DPadRight:
 | 
					                            case kHIDUsage_GD_DPadRight:
 | 
				
			||||||
                            case kHIDUsage_GD_DPadLeft:
 | 
					                            case kHIDUsage_GD_DPadLeft:
 | 
				
			||||||
 | 
					                            case kHIDUsage_GD_Start:
 | 
				
			||||||
 | 
					                            case kHIDUsage_GD_Select:
 | 
				
			||||||
                                if (!ElementAlreadyAdded(cookie, pDevice->firstButton)) {
 | 
					                                if (!ElementAlreadyAdded(cookie, pDevice->firstButton)) {
 | 
				
			||||||
                                    element = (recElement *) SDL_calloc(1, sizeof (recElement));
 | 
					                                    element = (recElement *) SDL_calloc(1, sizeof (recElement));
 | 
				
			||||||
                                    if (element) {
 | 
					                                    if (element) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue