mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 12:13:42 +00:00 
			
		
		
		
	Merge pull request #141 from archshift/crash-hunt
hid.cpp: Fixed crash when updating pad data while null
This commit is contained in:
		
						commit
						a110b06fb6
					
				@ -78,6 +78,10 @@ void PadButtonRelease(PadState pad_state) {
 | 
			
		||||
void PadUpdateComplete() {
 | 
			
		||||
    PadData* pad_data = GetPadData();
 | 
			
		||||
 | 
			
		||||
    if (pad_data == nullptr) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Update PadData struct
 | 
			
		||||
    pad_data->current_state.hex = next_state.hex;
 | 
			
		||||
    pad_data->index = next_index;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user