mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Fix yet another warning
This commit is contained in:
parent
eb9acd9b56
commit
31b133b012
1 changed files with 1 additions and 1 deletions
|
@ -1510,7 +1510,7 @@ void debugger_frame::PerformGoToThreadRequest(const QString& text_argument)
|
|||
if (cpu_thread* ptr = m_threads_info[i](); ptr && ptr->id == thread_id)
|
||||
{
|
||||
// Success
|
||||
m_choice_units->setCurrentIndex(i);
|
||||
m_choice_units->setCurrentIndex(::narrow<s32>(i));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue