mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #828 from lioncash/seq
hid: Get rid of undefined behavior
This commit is contained in:
		
						commit
						3c47522e67
					
				@ -58,7 +58,7 @@ void Update() {
 | 
			
		||||
 | 
			
		||||
    mem->pad.current_state.hex = state.hex;
 | 
			
		||||
    mem->pad.index = next_pad_index;
 | 
			
		||||
    ++next_touch_index %= mem->pad.entries.size();
 | 
			
		||||
    next_touch_index = (next_touch_index + 1) % mem->pad.entries.size();
 | 
			
		||||
 | 
			
		||||
    // Get the previous Pad state
 | 
			
		||||
    u32 last_entry_index = (mem->pad.index - 1) % mem->pad.entries.size();
 | 
			
		||||
@ -88,7 +88,7 @@ void Update() {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    mem->touch.index = next_touch_index;
 | 
			
		||||
    ++next_touch_index %= mem->touch.entries.size();
 | 
			
		||||
    next_touch_index = (next_touch_index + 1) % mem->touch.entries.size();
 | 
			
		||||
 | 
			
		||||
    // Get the current touch entry
 | 
			
		||||
    TouchDataEntry* touch_entry = &mem->touch.entries[mem->touch.index];
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user