mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Implemented GetImageSize
This commit is contained in:
		
							parent
							
								
									fafc80d72e
								
							
						
					
					
						commit
						528e5cee67
					
				| @ -34,7 +34,7 @@ public: | |||||||
|         static const FunctionInfo functions[] = { |         static const FunctionInfo functions[] = { | ||||||
|             {0, &IProfile::Get, "Get"}, |             {0, &IProfile::Get, "Get"}, | ||||||
|             {1, &IProfile::GetBase, "GetBase"}, |             {1, &IProfile::GetBase, "GetBase"}, | ||||||
|             {10, nullptr, "GetImageSize"}, |             {10, &IProfile::GetImageSize, "GetImageSize"}, | ||||||
|             {11, &IProfile::LoadImage, "LoadImage"}, |             {11, &IProfile::LoadImage, "LoadImage"}, | ||||||
|         }; |         }; | ||||||
|         RegisterHandlers(functions); |         RegisterHandlers(functions); | ||||||
| @ -93,6 +93,14 @@ private: | |||||||
|         rb.Push<u32>(jpeg_size); |         rb.Push<u32>(jpeg_size); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |     void GetImageSize(Kernel::HLERequestContext& ctx) { | ||||||
|  |         LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||||||
|  |         constexpr u32 jpeg_size = 107; | ||||||
|  |         IPC::ResponseBuilder rb{ctx, 3}; | ||||||
|  |         rb.Push(RESULT_SUCCESS); | ||||||
|  |         rb.Push<u32>(jpeg_size); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|     const ProfileManager& profile_manager; |     const ProfileManager& profile_manager; | ||||||
|     UUID user_id; ///< The user id this profile refers to.
 |     UUID user_id; ///< The user id this profile refers to.
 | ||||||
| }; | }; | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 David Marcec
						David Marcec