patch_manager: Add short-circuit edge-case to GetPatchVersionNames
If title ID is 0, there are no add ons, prevents wasting time looking for them.
This commit is contained in:
		
							parent
							
								
									06db4d94fd
								
							
						
					
					
						commit
						62d772eaed
					
				@ -408,6 +408,8 @@ static bool IsDirValidAndNonEmpty(const VirtualDir& dir) {
 | 
			
		||||
 | 
			
		||||
std::map<std::string, std::string, std::less<>> PatchManager::GetPatchVersionNames(
 | 
			
		||||
    VirtualFile update_raw) const {
 | 
			
		||||
    if (title_id == 0)
 | 
			
		||||
        return {};
 | 
			
		||||
    std::map<std::string, std::string, std::less<>> out;
 | 
			
		||||
    const auto& installed = Core::System::GetInstance().GetContentProvider();
 | 
			
		||||
    const auto& disabled = Settings::values.disabled_addons[title_id];
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user