aboutsummaryrefslogtreecommitdiff
path: root/core/thread
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-05-31 22:23:47 +0100
committergingerBill <bill@gingerbill.org>2023-05-31 22:23:47 +0100
commitc194dfbdf72325ffae41f2ad509f1b7b0140b05b (patch)
tree2d4ad08a1db91d810064d54bd7ce673433e28399 /core/thread
parent6fe2df1d7d785a7d56094943851476497f18045d (diff)
Remove `thread.init_context = context`
Diffstat (limited to 'core/thread')
-rw-r--r--core/thread/thread_windows.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin
index 68382444c..d8883c02d 100644
--- a/core/thread/thread_windows.odin
+++ b/core/thread/thread_windows.odin
@@ -62,7 +62,6 @@ _create :: proc(procedure: Thread_Proc, priority := Thread_Priority.Normal) -> ^
thread.procedure = procedure
thread.win32_thread = win32_thread
thread.win32_thread_id = win32_thread_id
- thread.init_context = context
ok := win32.SetThreadPriority(win32_thread, _thread_priority_map[priority])
assert(ok == true)