diff options
| author | 2020-12-28 13:53:28 -0500 | |
|---|---|---|
| committer | 2021-01-07 14:33:45 -0500 | |
| commit | 16392a23cc864ef0fa8a768584fbcc64fec40f2a (patch) | |
| tree | 7039db82d3a5b08b2f7d437bb572f818645a8e7d | |
| parent | fix for nvdec disabled, cleanup host1x (diff) | |
| download | yuzu-16392a23cc864ef0fa8a768584fbcc64fec40f2a.tar.gz yuzu-16392a23cc864ef0fa8a768584fbcc64fec40f2a.tar.xz yuzu-16392a23cc864ef0fa8a768584fbcc64fec40f2a.zip | |
remove inaccurate reference
Co-authored-by: LC <mathew1800@gmail.com>
| -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()) { |