mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
svcGetInfo id0 should be an u32
svcGetInfo uses an u32 for id0 in the kernel (which moves W1 and not X1).
This commit is contained in:
parent
11e3bfd5ac
commit
37fdcb5726
@ -593,7 +593,7 @@ void NORETURN svcReturnFromException(Result res);
|
|||||||
* @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetInfo">switchbrew.org wiki</a>.
|
* @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetInfo">switchbrew.org wiki</a>.
|
||||||
* @note Syscall number 0x29.
|
* @note Syscall number 0x29.
|
||||||
*/
|
*/
|
||||||
Result svcGetInfo(u64* out, u64 id0, Handle handle, u64 id1);
|
Result svcGetInfo(u64* out, u32 id0, Handle handle, u64 id1);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user