mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	clang-format fixes
This commit is contained in:
		
							parent
							
								
									7dbf4c1ae5
								
							
						
					
					
						commit
						7fba9c7224
					
				| @ -9,5 +9,4 @@ | |||||||
| namespace Service::NS { | namespace Service::NS { | ||||||
| 
 | 
 | ||||||
| constexpr ResultCode ERR_APPLICATION_LANGUAGE_NOT_FOUND{ErrorModule::NS, 300}; | constexpr ResultCode ERR_APPLICATION_LANGUAGE_NOT_FOUND{ErrorModule::NS, 300}; | ||||||
| 
 |  | ||||||
| } | } | ||||||
| @ -276,7 +276,8 @@ constexpr ApplicationLanguagePriorityList priority_list_simplified_chinese = {{ | |||||||
|     ApplicationLanguage::Korean, |     ApplicationLanguage::Korean, | ||||||
| }}; | }}; | ||||||
| 
 | 
 | ||||||
| const ApplicationLanguagePriorityList* GetApplicationLanguagePriorityList(ApplicationLanguage lang) { | const ApplicationLanguagePriorityList* GetApplicationLanguagePriorityList( | ||||||
|  |     ApplicationLanguage lang) { | ||||||
|     switch (lang) { |     switch (lang) { | ||||||
|     case ApplicationLanguage::AmericanEnglish: |     case ApplicationLanguage::AmericanEnglish: | ||||||
|         return &priority_list_american_english; |         return &priority_list_american_english; | ||||||
|  | |||||||
| @ -28,14 +28,15 @@ namespace Service::NS { | |||||||
|     SimplifiedChinese, |     SimplifiedChinese, | ||||||
|     Count |     Count | ||||||
| }; | }; | ||||||
|     using ApplicationLanguagePriorityList = const std::array<ApplicationLanguage, static_cast<std::size_t>(ApplicationLanguage::Count)>; | using ApplicationLanguagePriorityList = | ||||||
|  |     const std::array<ApplicationLanguage, static_cast<std::size_t>(ApplicationLanguage::Count)>; | ||||||
| 
 | 
 | ||||||
| constexpr u32 GetSupportedLanguageFlag(const ApplicationLanguage lang) { | constexpr u32 GetSupportedLanguageFlag(const ApplicationLanguage lang) { | ||||||
|     return 1u << static_cast<u32>(lang); |     return 1u << static_cast<u32>(lang); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
| const ApplicationLanguagePriorityList* GetApplicationLanguagePriorityList(ApplicationLanguage lang); | const ApplicationLanguagePriorityList* GetApplicationLanguagePriorityList(ApplicationLanguage lang); | ||||||
|     std::optional<ApplicationLanguage> ConvertToApplicationLanguage(Service::Set::LanguageCode language_code); | std::optional<ApplicationLanguage> ConvertToApplicationLanguage( | ||||||
|  |     Service::Set::LanguageCode language_code); | ||||||
| std::optional<Service::Set::LanguageCode> ConvertToLanguageCode(ApplicationLanguage lang); | std::optional<Service::Set::LanguageCode> ConvertToLanguageCode(ApplicationLanguage lang); | ||||||
| } | } // namespace Service::NS
 | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Michael Scire
						Michael Scire