From 54ede6c4e33707c5badf2e5680cd44907651cc76 Mon Sep 17 00:00:00 2001 From: raven02 Date: Mon, 2 Jun 2014 16:09:36 +0800 Subject: [PATCH] Fix wrong identation --- rpcs3/Emu/SysCalls/Modules/cellSpurs.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/rpcs3/Emu/SysCalls/Modules/cellSpurs.cpp b/rpcs3/Emu/SysCalls/Modules/cellSpurs.cpp index a40c203b9a..f3a6096efa 100644 --- a/rpcs3/Emu/SysCalls/Modules/cellSpurs.cpp +++ b/rpcs3/Emu/SysCalls/Modules/cellSpurs.cpp @@ -163,9 +163,13 @@ int cellSpursAttributeEnableSystemWorkload(mem_ptr_t 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; }