diff options
Diffstat (limited to 'src/core/hle/kernel/session.h')
| -rw-r--r-- | src/core/hle/kernel/session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h index 9e9288e0f..0fd18148a 100644 --- a/src/core/hle/kernel/session.h +++ b/src/core/hle/kernel/session.h | |||
| @@ -17,7 +17,7 @@ static const int kCommandHeaderOffset = 0x80; ///< Offset into command buffer of | |||
| 17 | * @return Pointer to command buffer | 17 | * @return Pointer to command buffer |
| 18 | */ | 18 | */ |
| 19 | inline static u32* GetCommandBuffer(const int offset=0) { | 19 | inline static u32* GetCommandBuffer(const int offset=0) { |
| 20 | return (u32*)Memory::GetPointer(Memory::KERNEL_MEMORY_VADDR + kCommandHeaderOffset + offset); | 20 | return (u32*)Memory::GetPointer(Memory::TLS_AREA_VADDR + kCommandHeaderOffset + offset); |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | /** | 23 | /** |