1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-01 17:06:32 -05:00

Merge pull request #4828 from lioncash/lockguard

general: Use template deduction guides for lock_guard
This commit is contained in:
Rodrigo Locatti
2020-10-25 16:55:54 -03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -596,6 +596,6 @@ void QtControllerSelector::ReconfigureControllers(
void QtControllerSelector::MainWindowReconfigureFinished() {
// Acquire the HLE mutex
std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock);
std::lock_guard lock(HLE::g_hle_lock);
callback();
}