Only serialize wchar paths on windows
This commit is contained in:
parent
38e9eb379d
commit
de9ae14059
3 changed files with 5 additions and 3 deletions
|
@ -63,8 +63,7 @@ void Thread::Acquire(Thread* thread) {
|
|||
}
|
||||
|
||||
Thread::Thread(KernelSystem& kernel, u32 core_id)
|
||||
: WaitObject(kernel), context(kernel.GetThreadManager(core_id).NewContext()),
|
||||
core_id(core_id),
|
||||
: WaitObject(kernel), context(kernel.GetThreadManager(core_id).NewContext()), core_id(core_id),
|
||||
thread_manager(kernel.GetThreadManager(core_id)) {}
|
||||
Thread::~Thread() {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue