We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7988320 commit 3ef7b6cCopy full SHA for 3ef7b6c
pcsx2/GS/Renderers/SW/GSRasterizer.cpp
@@ -1550,7 +1550,7 @@ void GSRasterizerList::Queue(const GSRingHeap::SharedPtr<GSRasterizerData>& data
1550
m_ds.SetupDraw(*data.get());
1551
}
1552
1553
- pxAssert(r.top >= 0 && r.top < 2048 && r.bottom >= 0 && r.bottom < 2048);
+ pxAssert(r.top >= 0 && r.top <= 2048 && r.bottom >= 0 && r.bottom <= 2048);
1554
1555
int top = r.top >> m_thread_height;
1556
int bottom = std::min<int>((r.bottom + (1 << m_thread_height) - 1) >> m_thread_height, top + (int)m_workers.size());
0 commit comments