1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-10 04:31:44 +00:00

Update title.h

I was sleepy.
This commit is contained in:
Pablo Curiel 2021-03-09 21:15:40 -04:00
parent a01b7846de
commit 34c15d92cc

View file

@ -139,9 +139,7 @@ NX_INLINE void titleConvertNcmContentSizeToU64(const u8 *size, u64 *out)
NX_INLINE void titleConvertU64ToNcmContentSize(const u64 *size, u8 *out)
{
if (!size || !out) return;
memcpy(out, size, 6);
out[6] = out[7] = 0;
if (size && out) memcpy(out, size, 6);
}
NX_INLINE u64 titleGetPatchIdByApplicationId(u64 app_id)