Remove thread.init_context = context

This commit is contained in:
gingerBill
2023-05-31 22:23:47 +01:00
parent 6fe2df1d7d
commit c194dfbdf7

View File

@@ -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)