mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 07:13:43 +00:00 
			
		
		
		
	service/fsp_srv: Remove unnecessary unknown member in OpenSaveDataFileSystem
The unknown member here is actually padding due to being passed as a struct. We can do the same, and remove the need to pop a padding word.
This commit is contained in:
		
							parent
							
								
									d9ee58a3b5
								
							
						
					
					
						commit
						d0ed3ff4b7
					
				@ -781,16 +781,17 @@ void FSP_SRV::CreateSaveDataFileSystem(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void FSP_SRV::OpenSaveDataFileSystem(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    LOG_INFO(Service_FS, "called.");
 | 
			
		||||
 | 
			
		||||
    struct Parameters {
 | 
			
		||||
        FileSys::SaveDataSpaceId save_data_space_id;
 | 
			
		||||
        FileSys::SaveDataDescriptor descriptor;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    IPC::RequestParser rp{ctx};
 | 
			
		||||
    const auto parameters = rp.PopRaw<Parameters>();
 | 
			
		||||
 | 
			
		||||
    auto space_id = rp.PopRaw<FileSys::SaveDataSpaceId>();
 | 
			
		||||
    auto unk = rp.Pop<u32>();
 | 
			
		||||
    LOG_INFO(Service_FS, "called with unknown={:08X}", unk);
 | 
			
		||||
 | 
			
		||||
    auto save_struct = rp.PopRaw<FileSys::SaveDataDescriptor>();
 | 
			
		||||
 | 
			
		||||
    auto dir = OpenSaveData(space_id, save_struct);
 | 
			
		||||
 | 
			
		||||
    auto dir = OpenSaveData(parameters.save_data_space_id, parameters.descriptor);
 | 
			
		||||
    if (dir.Failed()) {
 | 
			
		||||
        IPC::ResponseBuilder rb{ctx, 2, 0, 0};
 | 
			
		||||
        rb.Push(FileSys::ERROR_ENTITY_NOT_FOUND);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user