mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	acc: Correct IProfile's constructor initializer list order
Arranges them in the order the members would be initialized
This commit is contained in:
		
							parent
							
								
									0fcdf37917
								
							
						
					
					
						commit
						f5b132676f
					
				@ -30,7 +30,7 @@ static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size")
 | 
			
		||||
class IProfile final : public ServiceFramework<IProfile> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit IProfile(UUID user_id, ProfileManager& profile_manager)
 | 
			
		||||
        : ServiceFramework("IProfile"), user_id(user_id), profile_manager(profile_manager) {
 | 
			
		||||
        : ServiceFramework("IProfile"), profile_manager(profile_manager), user_id(user_id) {
 | 
			
		||||
        static const FunctionInfo functions[] = {
 | 
			
		||||
            {0, &IProfile::Get, "Get"},
 | 
			
		||||
            {1, &IProfile::GetBase, "GetBase"},
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user