mirror of
				https://github.com/jakcron/nstool.git
				synced 2025-11-04 10:34:53 +00:00 
			
		
		
		
	[libhac] Fix bug related to previous changes to fnd::List.
This commit is contained in:
		
							parent
							
								
									cd29ed80e6
								
							
						
					
					
						commit
						8f9694a769
					
				| 
						 | 
				
			
			@ -26,12 +26,11 @@ void nn::hac::InteruptHandler::importKernelCapabilityList(const fnd::List<Kernel
 | 
			
		|||
{
 | 
			
		||||
	if (caps.size() == 0)
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	// convert to interupts
 | 
			
		||||
	fnd::List<InteruptEntry> interupts;
 | 
			
		||||
	for (size_t i = 0; i < caps.size(); i++)
 | 
			
		||||
	{
 | 
			
		||||
		interupts[i].setKernelCapability(caps[i]);
 | 
			
		||||
		interupts.addElement(InteruptEntry(caps[i]));
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	mInterupts.clear();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue