mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
DolphinQt: fix -Wsign-compare warning
This commit is contained in:
parent
750cb1f830
commit
5bd2b2699c
@ -465,7 +465,7 @@ void ThreadWidget::OnSelectionChanged(int row)
|
||||
{
|
||||
Common::Debug::PartialContext context;
|
||||
|
||||
if (row >= 0 && row < m_threads.size())
|
||||
if (row >= 0 && size_t(row) < m_threads.size())
|
||||
context = m_threads[row]->GetContext();
|
||||
|
||||
UpdateThreadContext(context);
|
||||
|
Loading…
x
Reference in New Issue
Block a user