From 9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 8 Jan 2018 21:12:13 -0500 Subject: [PATCH] mutex: Remove unused call to VerifyGuestState. --- src/core/hle/kernel/mutex.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index 0ee92a3e3a..4e86eb9187 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp @@ -42,9 +42,6 @@ SharedPtr Mutex::Create(SharedPtr holding_thread, VAddr g // Mutexes are referenced by guest address, so track this in the kernel g_object_address_table.Insert(guest_addr, mutex); - // Verify that the created mutex matches the guest state for the mutex - mutex->VerifyGuestState(); - return mutex; }