mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12: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++)
|
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;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue