mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-21 11:07:52 -05:00
Merge pull request #2468 from lioncash/deduction
yuzu: Remove explicit types from locks where applicable
This commit is contained in:
@ -54,6 +54,6 @@ void QtErrorDisplay::ShowCustomErrorText(ResultCode error, std::string dialog_te
|
||||
|
||||
void QtErrorDisplay::MainWindowFinishedError() {
|
||||
// Acquire the HLE mutex
|
||||
std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock);
|
||||
std::lock_guard lock{HLE::g_hle_lock};
|
||||
callback();
|
||||
}
|
||||
|
Reference in New Issue
Block a user