mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Thread: Moved position of * in arguments.
This commit is contained in:
		
							parent
							
								
									12e2a59565
								
							
						
					
					
						commit
						bfdd874b1f
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -145,7 +145,7 @@ void ChangeReadyState(Thread* t, bool ready) { | ||||||
| /// Verify that a thread has not been released from waiting
 | /// Verify that a thread has not been released from waiting
 | ||||||
| inline bool VerifyWait(const Handle& thread, WaitType type, Handle handle) { | inline bool VerifyWait(const Handle& thread, WaitType type, Handle handle) { | ||||||
|     Handle wait_id = 0; |     Handle wait_id = 0; | ||||||
|     Thread *t = g_object_pool.GetFast<Thread>(thread); |     Thread* t = g_object_pool.GetFast<Thread>(thread); | ||||||
|     if (t != nullptr && type == t->wait_type && handle == t->wait_handle) { |     if (t != nullptr && type == t->wait_type && handle == t->wait_handle) { | ||||||
|         return true; |         return true; | ||||||
|     } else { |     } else { | ||||||
|  | @ -158,7 +158,7 @@ inline bool VerifyWait(const Handle& thread, WaitType type, Handle handle) { | ||||||
| /// Stops the current thread
 | /// Stops the current thread
 | ||||||
| void StopThread(Handle thread, const char* reason) { | void StopThread(Handle thread, const char* reason) { | ||||||
|     u32 error; |     u32 error; | ||||||
|     Thread *t = g_object_pool.Get<Thread>(thread, error); |     Thread* t = g_object_pool.Get<Thread>(thread, error); | ||||||
|     if (t) { |     if (t) { | ||||||
|         ChangeReadyState(t, false); |         ChangeReadyState(t, false); | ||||||
|         t->status = THREADSTATUS_DORMANT; |         t->status = THREADSTATUS_DORMANT; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue