mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Stream buffer: Fix copy-paste mistake
This commit is contained in:
parent
4a39b06262
commit
16425379e3
1 changed files with 1 additions and 1 deletions
2
third_party/duckstation/gl/stream_buffer.cpp
vendored
2
third_party/duckstation/gl/stream_buffer.cpp
vendored
|
@ -148,7 +148,7 @@ namespace {
|
|||
ALWAYS_INLINE void EnsureSyncsWaitedForOffset(u32 offset) {
|
||||
const u32 end = std::min<u32>(GetSyncIndexForOffset(offset) + 1, NUM_SYNC_POINTS);
|
||||
for (; m_available_block_index < end; m_available_block_index++) {
|
||||
if (!m_sync_objects[m_used_block_index]) [[unlikely]] {
|
||||
if (!m_sync_objects[m_available_block_index]) [[unlikely]] {
|
||||
Helpers::warn("GL stream buffer: Fence slot we're trying to wait on is not in use");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue