Fix buffer type in FSUSER_EnumerateSystemSaveData.
This commit is contained in:
parent
2f7515a814
commit
001623c43d
@ -853,7 +853,7 @@ Result FSUSER_SwitchCleanupInvalidSaveData(bool enable);
|
||||
* @param idsSize Size of the IDs buffer.
|
||||
* @param ids Pointer to output IDs to.
|
||||
*/
|
||||
Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u64* ids);
|
||||
Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u32* ids);
|
||||
|
||||
/**
|
||||
* @brief Initializes a FSUSER session with an SDK version.
|
||||
|
@ -1407,7 +1407,7 @@ Result FSUSER_SwitchCleanupInvalidSaveData(bool enable)
|
||||
return cmdbuf[1];
|
||||
}
|
||||
|
||||
Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u64* ids)
|
||||
Result FSUSER_EnumerateSystemSaveData(u32* idsWritten, u32 idsSize, u32* ids)
|
||||
{
|
||||
u32 *cmdbuf = getThreadCommandBuffer();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user