mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
creport: fix thread_list access style
This commit is contained in:
parent
d65255acb8
commit
fd6fa89122
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ void CrashReport::BuildReport(u64 pid, bool has_extra_info) {
|
||||||
ProcessExceptions();
|
ProcessExceptions();
|
||||||
if (kernelAbove500()) {
|
if (kernelAbove500()) {
|
||||||
/* TODO: Process Code Regions. */
|
/* TODO: Process Code Regions. */
|
||||||
thread_list.ReadThreadsFromProcess(this->debug_handle, Is64Bit());
|
this->thread_list.ReadThreadsFromProcess(this->debug_handle, Is64Bit());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IsApplication()) {
|
if (IsApplication()) {
|
||||||
|
|
Loading…
Reference in a new issue