mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
svc/ipc: fix handle count accessors
This commit is contained in:
parent
84d8634938
commit
a4e3eae4b6
1 changed files with 2 additions and 2 deletions
|
@ -159,11 +159,11 @@ namespace ams::svc::ipc {
|
||||||
return this->header.Get<HasProcessId>();
|
return this->header.Get<HasProcessId>();
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr ALWAYS_INLINE bool GetCopyHandleCount() const {
|
constexpr ALWAYS_INLINE s32 GetCopyHandleCount() const {
|
||||||
return this->header.Get<CopyHandleCount>();
|
return this->header.Get<CopyHandleCount>();
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr ALWAYS_INLINE bool GetMoveHandleCount() const {
|
constexpr ALWAYS_INLINE s32 GetMoveHandleCount() const {
|
||||||
return this->header.Get<MoveHandleCount>();
|
return this->header.Get<MoveHandleCount>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue