summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-06-26 01:01:10 -0400
committerGravatar GitHub2018-06-26 01:01:10 -0400
commit1da0ee57fd4c3309f119f126822833f65b2255fc (patch)
treed75c8092945af47a8a5f98b70d89bb1b5b999c96 /src
parentSend the correct RequestUpdateAudioRenderer revision in the output header (#587) (diff)
parentFix crash at exit (diff)
downloadyuzu-1da0ee57fd4c3309f119f126822833f65b2255fc.tar.gz
yuzu-1da0ee57fd4c3309f119f126822833f65b2255fc.tar.xz
yuzu-1da0ee57fd4c3309f119f126822833f65b2255fc.zip
Merge pull request #589 from mailwl/fix-crash
Fix crash at exit
Diffstat (limited to '')
-rw-r--r--src/video_core/debug_utils/debug_utils.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index bbba8e380..9382a75e5 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -55,8 +55,10 @@ public:
55 virtual ~BreakPointObserver() { 55 virtual ~BreakPointObserver() {
56 auto context = context_weak.lock(); 56 auto context = context_weak.lock();
57 if (context) { 57 if (context) {
58 std::unique_lock<std::mutex> lock(context->breakpoint_mutex); 58 {
59 context->breakpoint_observers.remove(this); 59 std::unique_lock<std::mutex> lock(context->breakpoint_mutex);
60 context->breakpoint_observers.remove(this);
61 }
60 62
61 // If we are the last observer to be destroyed, tell the debugger context that 63 // If we are the last observer to be destroyed, tell the debugger context that
62 // it is free to continue. In particular, this is required for a proper yuzu 64 // it is free to continue. In particular, this is required for a proper yuzu