mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 21:17:55 +00:00
yuzu/util: Replace lock_guard with scoped_lock
This commit is contained in:
parent
41af59a6cb
commit
833b9e5fb8
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ void ControllerNavigation::TriggerButton(Settings::NativeButton::Values native_b
|
||||||
}
|
}
|
||||||
|
|
||||||
void ControllerNavigation::ControllerUpdateEvent(Core::HID::ControllerTriggerType type) {
|
void ControllerNavigation::ControllerUpdateEvent(Core::HID::ControllerTriggerType type) {
|
||||||
std::lock_guard lock{mutex};
|
std::scoped_lock lock{mutex};
|
||||||
if (!Settings::values.controller_navigation) {
|
if (!Settings::values.controller_navigation) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue