mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 14:05:41 +01:00
general: Use template deduction guides for lock_guard
Same behavior, less code.
This commit is contained in:
parent
ea20b5c970
commit
98f4c5e7b8
@ -84,7 +84,7 @@ void ProgressServiceBackend::FinishDownload(ResultCode result) {
|
||||
|
||||
void ProgressServiceBackend::SignalUpdate() const {
|
||||
if (need_hle_lock) {
|
||||
std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock);
|
||||
std::lock_guard lock(HLE::g_hle_lock);
|
||||
event.writable->Signal();
|
||||
} else {
|
||||
event.writable->Signal();
|
||||
|
@ -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…
Reference in New Issue
Block a user