mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	thread: Fix a conditional check in Reschedule
This commit is contained in:
		
							parent
							
								
									e83bc5b7ee
								
							
						
					
					
						commit
						207087c856
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -495,7 +495,7 @@ void Reschedule() { | ||||||
|         LOG_TRACE(Kernel, "context switch %u -> %u", cur->GetObjectId(), next->GetObjectId()); |         LOG_TRACE(Kernel, "context switch %u -> %u", cur->GetObjectId(), next->GetObjectId()); | ||||||
|     } else if (cur) { |     } else if (cur) { | ||||||
|         LOG_TRACE(Kernel, "context switch %u -> idle", cur->GetObjectId()); |         LOG_TRACE(Kernel, "context switch %u -> idle", cur->GetObjectId()); | ||||||
|     } else { |     } else if (next) { | ||||||
|         LOG_TRACE(Kernel, "context switch idle -> %u", next->GetObjectId()); |         LOG_TRACE(Kernel, "context switch idle -> %u", next->GetObjectId()); | ||||||
|     } |     } | ||||||
|      |      | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue