mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Fix wrong identation
This commit is contained in:
parent
c4522922f2
commit
54ede6c4e3
1 changed files with 7 additions and 3 deletions
|
@ -163,9 +163,13 @@ int cellSpursAttributeEnableSystemWorkload(mem_ptr_t<CellSpursAttribute> attr, c
|
|||
}
|
||||
|
||||
for (int i = 0; i < CELL_SPURS_MAX_SPU; i++)
|
||||
if (priority[i] != 1 || maxSpu == 0)
|
||||
return CELL_SPURS_CORE_ERROR_INVAL;
|
||||
|
||||
{
|
||||
if (priority[i] != 1 || maxSpu == 0)
|
||||
{
|
||||
cellSpurs.Error("cellSpursAttributeEnableSystemWorkload : CELL_SPURS_CORE_ERROR_INVAL");
|
||||
return CELL_SPURS_CORE_ERROR_INVAL;
|
||||
}
|
||||
}
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue