diff options
| author | 2022-06-21 15:30:27 -0700 | |
|---|---|---|
| committer | 2022-06-21 15:30:27 -0700 | |
| commit | 73e13aa09051ce802ad6a4c98e0ce325a2cd707c (patch) | |
| tree | 4485c500f91b1cb41bd81c16624b74d8c96b0d03 /src/core/hle/kernel/kernel.cpp | |
| parent | Merge pull request #8487 from german77/system-button (diff) | |
| parent | kernel: fix some uses of disable_count (diff) | |
| download | yuzu-73e13aa09051ce802ad6a4c98e0ce325a2cd707c.tar.gz yuzu-73e13aa09051ce802ad6a4c98e0ce325a2cd707c.tar.xz yuzu-73e13aa09051ce802ad6a4c98e0ce325a2cd707c.zip | |
Merge pull request #8468 from liamwhite/dispatch-tracking
kernel: fix some uses of disable_count
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 73593c7a0..66c8f4455 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp | |||
| @@ -254,7 +254,6 @@ struct KernelCore::Impl { | |||
| 254 | core_id) | 254 | core_id) |
| 255 | .IsSuccess()); | 255 | .IsSuccess()); |
| 256 | shutdown_threads[core_id]->SetName(fmt::format("SuspendThread:{}", core_id)); | 256 | shutdown_threads[core_id]->SetName(fmt::format("SuspendThread:{}", core_id)); |
| 257 | shutdown_threads[core_id]->DisableDispatch(); | ||
| 258 | } | 257 | } |
| 259 | } | 258 | } |
| 260 | 259 | ||