diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 2394620eb..419ad1e63 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -314,7 +314,7 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, | |||
| 314 | // TODO(Subv): Find the correct MemoryState for this region. | 314 | // TODO(Subv): Find the correct MemoryState for this region. |
| 315 | vm_manager.MapMemoryBlock(Memory::TLS_AREA_VADDR + available_page * Memory::PAGE_SIZE, | 315 | vm_manager.MapMemoryBlock(Memory::TLS_AREA_VADDR + available_page * Memory::PAGE_SIZE, |
| 316 | linheap_memory, offset, Memory::PAGE_SIZE, | 316 | linheap_memory, offset, Memory::PAGE_SIZE, |
| 317 | MemoryState::ThreadLocalStorage); | 317 | MemoryState::ThreadLocal); |
| 318 | } | 318 | } |
| 319 | 319 | ||
| 320 | // Mark the slot as used | 320 | // Mark the slot as used |