aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-18 22:16:53 -0500
committerLioncash <mathew1800@gmail.com>2018-12-18 22:28:55 -0500
commit9b3a38e3d331b2fb647cd7286dad51d7051bdf64 (patch)
treeb7b3508d540b5d9959a6873dde414fb7be8fc5d8 /src/core/hle/kernel/kernel.h
parent84823a3036d7bedfb4c4820e7019fb7daa9b4e4b (diff)
kernel/process: Make process_id a 64-bit value
In the actual kernel, this is a 64-bit value, so we shouldn't be using a 32-bit type to handle it.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index ea00c89f5..4f0f2331c 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -88,7 +88,7 @@ private:
u32 CreateNewObjectID();
/// Creates a new process ID, incrementing the internal process ID counter;
- u32 CreateNewProcessID();
+ u64 CreateNewProcessID();
/// Creates a new thread ID, incrementing the internal thread ID counter.
u32 CreateNewThreadID();