diff options
| -rw-r--r-- | src/video_core/command_classes/sync_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_classes/sync_manager.cpp b/src/video_core/command_classes/sync_manager.cpp index 579857766..19dc9e0ab 100644 --- a/src/video_core/command_classes/sync_manager.cpp +++ b/src/video_core/command_classes/sync_manager.cpp | |||
| @@ -38,7 +38,7 @@ u32 SyncptIncrManager::IncrementWhenDone(u32 class_id, u32 id) { | |||
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | void SyncptIncrManager::SignalDone(u32 handle) { | 40 | void SyncptIncrManager::SignalDone(u32 handle) { |
| 41 | const auto& done_incr = | 41 | const auto done_incr = |
| 42 | std::find_if(increments.begin(), increments.end(), | 42 | std::find_if(increments.begin(), increments.end(), |
| 43 | [handle](const SyncptIncr& incr) { return incr.id == handle; }); | 43 | [handle](const SyncptIncr& incr) { return incr.id == handle; }); |
| 44 | if (done_incr != increments.cend()) { | 44 | if (done_incr != increments.cend()) { |