diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 937b41767..332f96287 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -237,8 +237,8 @@ s32 Thread::GetWaitObjectIndex(const WaitObject* object) const { | |||
| 237 | 237 | ||
| 238 | VAddr Thread::GetCommandBufferAddress() const { | 238 | VAddr Thread::GetCommandBufferAddress() const { |
| 239 | // Offset from the start of TLS at which the IPC command buffer begins. | 239 | // Offset from the start of TLS at which the IPC command buffer begins. |
| 240 | static constexpr int CommandHeaderOffset = 0x80; | 240 | constexpr u64 command_header_offset = 0x80; |
| 241 | return GetTLSAddress() + CommandHeaderOffset; | 241 | return GetTLSAddress() + command_header_offset; |
| 242 | } | 242 | } |
| 243 | 243 | ||
| 244 | void Thread::SetStatus(ThreadStatus new_status) { | 244 | void Thread::SetStatus(ThreadStatus new_status) { |