diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-19 04:16:53 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-19 04:28:55 +0100 |
commit | 9b3a38e3d331b2fb647cd7286dad51d7051bdf64 (patch) | |
tree | b7b3508d540b5d9959a6873dde414fb7be8fc5d8 /src/core/hle/kernel/process.h | |
parent | Merge pull request #1905 from bunnei/ignore-empty-gpu-lists (diff) | |
download | yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.gz yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.bz2 yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.lz yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.xz yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.tar.zst yuzu-9b3a38e3d331b2fb647cd7286dad51d7051bdf64.zip |
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r-- | src/core/hle/kernel/process.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 459eedfa6..725bfa01a 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -162,7 +162,7 @@ public: } /// Gets the unique ID that identifies this particular process. - u32 GetProcessID() const { + u64 GetProcessID() const { return process_id; } @@ -288,10 +288,10 @@ private: ProcessStatus status; /// The ID of this process - u32 process_id = 0; + u64 process_id = 0; /// Title ID corresponding to the process - u64 program_id; + u64 program_id = 0; /// Resource limit descriptor for this process SharedPtr<ResourceLimit> resource_limit; |