mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
DolphinQt: fix -Wsign-compare warning
This commit is contained in:
parent
750cb1f830
commit
5bd2b2699c
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue