diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-05 01:34:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 01:34:09 +0100 |
commit | 2ceb514a3980537c0d678de4ec209256b6c0e1b8 (patch) | |
tree | 68bb81e84719456266f5e40da884f249b202d5a6 | |
parent | Merge pull request #7287 from Morph1984/stub-aoc (diff) | |
parent | core: Reorder perf_stats destruction order on Shutdown (diff) | |
download | yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.tar yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.tar.gz yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.tar.bz2 yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.tar.lz yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.tar.xz yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.tar.zst yuzu-2ceb514a3980537c0d678de4ec209256b6c0e1b8.zip |
-rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 85485773f..d6cf44ce3 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -324,8 +324,8 @@ struct System::Impl { time_manager.Shutdown(); core_timing.Shutdown(); app_loader.reset(); - perf_stats.reset(); gpu_core.reset(); + perf_stats.reset(); kernel.Shutdown(); memory.Reset(); applet_manager.ClearAll(); |