Merge pull request #274 from Steveice10/master

Fix buffer type in FSUSER_EnumerateSystemSaveData.
This commit is contained in:
fincs 2016-04-10 11:35:46 +02:00
commit 3d243ce567
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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();