Revert C-only feature

This commit is contained in:
piepie62 2020-05-05 12:52:11 -04:00
parent 4bdcb8209a
commit 70dc0b0451
2 changed files with 2 additions and 2 deletions

View File

@ -597,7 +597,7 @@ Result FSPXI_ReadNandReport(Handle serviceHandle, void* buffer, u32 size, u32 un
* @brief Unknown command 0x56
* @remark Called by FSUSER_ControlArchive with ArchiveAction 0x789D
*/
Result FSPXI_Unknown0x56(Handle serviceHandle, u32 out[static 4], FS_Archive archive, FS_Path path);
Result FSPXI_Unknown0x56(Handle serviceHandle, u32 out[4], FS_Archive archive, FS_Path path);
#undef DEFINE_PXIFS_SERVICE_METHOD
#undef DEFINE_SERVICE_METHOD

View File

@ -1362,7 +1362,7 @@ Result FSPXI_ReadNandReport(Handle serviceHandle, void* buffer, u32 size, u32 un
return (Result) cmdbuf[1];
}
Result FSPXI_Unknown0x56(Handle serviceHandle, u32 out[static 4], FS_Archive archive, FS_Path path)
Result FSPXI_Unknown0x56(Handle serviceHandle, u32 out[4], FS_Archive archive, FS_Path path)
{
Result ret = 0;
u32 *cmdbuf = getThreadCommandBuffer();