mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
general: Use template deduction guides for lock_guard
Same behavior, less code.
This commit is contained in:
parent
c7b6027f34
commit
59a56fa810
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue