mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-11-04 12:51:17 +01:00 
			
		
		
		
	htc: fix copy/paste error in usb driver
This commit is contained in:
		
							parent
							
								
									e40eece74e
								
							
						
					
					
						commit
						8f85cc17dc
					
				@ -102,7 +102,7 @@ namespace ams::htclow::driver {
 | 
			
		||||
        /* Send until we've sent everything. */
 | 
			
		||||
        for (auto transferred = 0; transferred < dst_size; /* ... */) {
 | 
			
		||||
            int cur;
 | 
			
		||||
            R_TRY(SendUsb(std::addressof(cur), reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(dst) + transferred), dst_size - transferred));
 | 
			
		||||
            R_TRY(ReceiveUsb(std::addressof(cur), reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(dst) + transferred), dst_size - transferred));
 | 
			
		||||
 | 
			
		||||
            transferred += cur;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user