mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	control_metadata: Remove unnecessary else within GetLanguageEntry()
There's no need to indent the code here, given the if case contains a return statement at the end of it.
This commit is contained in:
		
							parent
							
								
									05d49962b6
								
							
						
					
					
						commit
						3146502a12
					
				| @ -31,15 +31,15 @@ NACP::NACP(VirtualFile file) : raw(std::make_unique<RawNACP>()) { | ||||
| const LanguageEntry& NACP::GetLanguageEntry(Language language) const { | ||||
|     if (language != Language::Default) { | ||||
|         return raw->language_entries.at(static_cast<u8>(language)); | ||||
|     } else { | ||||
|         for (const auto& language_entry : raw->language_entries) { | ||||
|             if (!language_entry.GetApplicationName().empty()) | ||||
|                 return language_entry; | ||||
|         } | ||||
| 
 | ||||
|         // Fallback to English
 | ||||
|         return GetLanguageEntry(Language::AmericanEnglish); | ||||
|     } | ||||
| 
 | ||||
|     for (const auto& language_entry : raw->language_entries) { | ||||
|         if (!language_entry.GetApplicationName().empty()) | ||||
|             return language_entry; | ||||
|     } | ||||
| 
 | ||||
|     // Fallback to English
 | ||||
|     return GetLanguageEntry(Language::AmericanEnglish); | ||||
| } | ||||
| 
 | ||||
| std::string NACP::GetApplicationName(Language language) const { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Lioncash
						Lioncash