diff options
| author | bunnei <bunneidev@gmail.com> | 2020-03-04 20:37:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-04 20:37:51 -0500 |
| commit | 1e84d22275e92cee7b243bf4329a53380ce14f3c (patch) | |
| tree | ee9cd2105f8802f81744f17154e767aa518ce867 /src/core/hle/kernel/process.cpp | |
| parent | 67e7186d79b21443ef1ab4b09c279d9a17adbc21 (diff) | |
| parent | dba112e51059f5e6107d02a0eb00513887d3b089 (diff) | |
Merge pull request #3478 from bunnei/a32
Refactoring to boot A32 games
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index 2fcb7326c..edc414d69 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp @@ -42,7 +42,8 @@ void SetupMainThread(Process& owner_process, KernelCore& kernel, u32 priority) { // Register 1 must be a handle to the main thread const Handle thread_handle = owner_process.GetHandleTable().Create(thread).Unwrap(); - thread->GetContext().cpu_registers[1] = thread_handle; + thread->GetContext32().cpu_registers[1] = thread_handle; + thread->GetContext64().cpu_registers[1] = thread_handle; // Threads by default are dormant, wake up the main thread so it runs when the scheduler fires thread->ResumeFromWait(); |
