mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	kernel: Shorten GetCount
This commit is contained in:
		
							parent
							
								
									9b68d5e074
								
							
						
					
					
						commit
						208598dbe2
					
				
					 1 changed files with 3 additions and 6 deletions
				
			
		|  | @ -2,6 +2,8 @@ | |||
| // Licensed under GPLv2
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include <algorithm> | ||||
| 
 | ||||
| #include "common/common.h" | ||||
| 
 | ||||
| #include "core/core.h" | ||||
|  | @ -76,12 +78,7 @@ void ObjectPool::List() { | |||
| } | ||||
| 
 | ||||
| int ObjectPool::GetCount() const { | ||||
|     int count = 0; | ||||
|     for (int i = 0; i < MAX_COUNT; i++) { | ||||
|         if (occupied[i]) | ||||
|             count++; | ||||
|     } | ||||
|     return count; | ||||
|     return std::count(occupied.begin(), occupied.end(), true); | ||||
| } | ||||
| 
 | ||||
| Object* ObjectPool::CreateByIDType(int type) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue