summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h6
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:
162 } 162 }
163 163
164 /// Gets the unique ID that identifies this particular process. 164 /// Gets the unique ID that identifies this particular process.
165 u32 GetProcessID() const { 165 u64 GetProcessID() const {
166 return process_id; 166 return process_id;
167 } 167 }
168 168
@@ -288,10 +288,10 @@ private:
288 ProcessStatus status; 288 ProcessStatus status;
289 289
290 /// The ID of this process 290 /// The ID of this process
291 u32 process_id = 0; 291 u64 process_id = 0;
292 292
293 /// Title ID corresponding to the process 293 /// Title ID corresponding to the process
294 u64 program_id; 294 u64 program_id = 0;
295 295
296 /// Resource limit descriptor for this process 296 /// Resource limit descriptor for this process
297 SharedPtr<ResourceLimit> resource_limit; 297 SharedPtr<ResourceLimit> resource_limit;