mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Clarify an assignment is not a comparison.
This commit is contained in:
parent
563aa2d2ca
commit
f2d6bf73ca
2 changed files with 6 additions and 6 deletions
|
|
@ -230,8 +230,8 @@ int sys_spu_thread_group_start(u32 id)
|
|||
|
||||
for (u32 i = 0; i < group_info->list.size(); i++)
|
||||
{
|
||||
CPUThread* t;
|
||||
if (t = Emu.GetCPU().GetThread(group_info->list[i]))
|
||||
CPUThread* t = Emu.GetCPU().GetThread(group_info->list[i]);
|
||||
if (t)
|
||||
{
|
||||
t->Exec();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue