summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-02-06 01:22:45 +0100
committerGitHub <noreply@github.com>2022-02-06 01:22:45 +0100
commitb720009dc0641a0899d9be347c892472a6916ef5 (patch)
tree1228d877effdb8155509933be77084df44986fe8 /src/core/hle/kernel/svc.cpp
parentMerge pull request #7851 from lat9nq/cmd-add-motion (diff)
parentservice: pm: Implement AtmosphereGetProcessInfo (diff)
downloadyuzu-b720009dc0641a0899d9be347c892472a6916ef5.tar
yuzu-b720009dc0641a0899d9be347c892472a6916ef5.tar.gz
yuzu-b720009dc0641a0899d9be347c892472a6916ef5.tar.bz2
yuzu-b720009dc0641a0899d9be347c892472a6916ef5.tar.lz
yuzu-b720009dc0641a0899d9be347c892472a6916ef5.tar.xz
yuzu-b720009dc0641a0899d9be347c892472a6916ef5.tar.zst
yuzu-b720009dc0641a0899d9be347c892472a6916ef5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 4f7aebf3f..9387373c1 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -396,7 +396,7 @@ static ResultCode GetProcessId(Core::System& system, u64* out_process_id, Handle
// Get the process id.
*out_process_id = process->GetId();
- return ResultInvalidHandle;
+ return ResultSuccess;
}
static ResultCode GetProcessId32(Core::System& system, u32* out_process_id_low,