mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #3251 from Subv/fs_numseeds
HLE/FS: Stubbed GetNumSeeds to always return 0 seeds.
This commit is contained in:
		
						commit
						1e3113b1b2
					
				
					 1 changed files with 21 additions and 0 deletions
				
			
		|  | @ -968,6 +968,26 @@ static void GetProgramLaunchInfo(Service::Interface* self) { | ||||||
|     rb.Push<u32>(0); |     rb.Push<u32>(0); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | /**
 | ||||||
|  |  * FS_User::GetNumSeeds service function. | ||||||
|  |  *  Inputs: | ||||||
|  |  *      0 : 0x087D0000 | ||||||
|  |  *  Outputs: | ||||||
|  |  *      0 : 0x087D0080 | ||||||
|  |  *      1 : Result of function, 0 on success, otherwise error code | ||||||
|  |  *      2 : Number of seeds in the SEEDDB | ||||||
|  |  */ | ||||||
|  | static void GetNumSeeds(Service::Interface* self) { | ||||||
|  |     IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x87D, 0, 0); | ||||||
|  | 
 | ||||||
|  |     LOG_WARNING(Service_FS, "(STUBBED) called"); | ||||||
|  | 
 | ||||||
|  |     IPC::RequestBuilder rb = rp.MakeBuilder(2, 0); | ||||||
|  | 
 | ||||||
|  |     rb.Push(RESULT_SUCCESS); | ||||||
|  |     rb.Push<u32>(0); | ||||||
|  | } | ||||||
|  | 
 | ||||||
| const Interface::FunctionInfo FunctionTable[] = { | const Interface::FunctionInfo FunctionTable[] = { | ||||||
|     {0x000100C6, nullptr, "Dummy1"}, |     {0x000100C6, nullptr, "Dummy1"}, | ||||||
|     {0x040100C4, nullptr, "Control"}, |     {0x040100C4, nullptr, "Control"}, | ||||||
|  | @ -1078,6 +1098,7 @@ const Interface::FunctionInfo FunctionTable[] = { | ||||||
|     {0x08690000, nullptr, "GetNandEraseCount"}, |     {0x08690000, nullptr, "GetNandEraseCount"}, | ||||||
|     {0x086A0082, nullptr, "ReadNandReport"}, |     {0x086A0082, nullptr, "ReadNandReport"}, | ||||||
|     {0x087A0180, nullptr, "AddSeed"}, |     {0x087A0180, nullptr, "AddSeed"}, | ||||||
|  |     {0x087D0000, GetNumSeeds, "GetNumSeeds"}, | ||||||
|     {0x088600C0, nullptr, "CheckUpdatedDat"}, |     {0x088600C0, nullptr, "CheckUpdatedDat"}, | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue