summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authortech-ticks <techticksdev@gmail.com>2022-02-03 20:36:13 +0100
committertech-ticks <techticksdev@gmail.com>2022-02-04 01:41:36 +0100
commit16bf50e61093dd2b852d9f101582485004c7ca8b (patch)
tree06f5a3ee02f7256f15c69b61a723257b0165a2a6 /src/core/hle/kernel
parentMerge pull request #7811 from german77/analog-mod (diff)
downloadyuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.tar
yuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.tar.gz
yuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.tar.bz2
yuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.tar.lz
yuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.tar.xz
yuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.tar.zst
yuzu-16bf50e61093dd2b852d9f101582485004c7ca8b.zip
Diffstat (limited to 'src/core/hle/kernel')
-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,