aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/psp/trace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/psp/trace.cpp')
-rw-r--r--backends/platform/psp/trace.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/trace.cpp b/backends/platform/psp/trace.cpp
index 3fe796dd26..80ea98f8b6 100644
--- a/backends/platform/psp/trace.cpp
+++ b/backends/platform/psp/trace.cpp
@@ -41,7 +41,7 @@ void PSPDebugTrace (const char *format, ...) {
fd = sceIoOpen("MS0:/DTRACE.TXT", PSP_O_RDWR | PSP_O_CREAT | PSP_O_APPEND, 0777);
- if(fd <= 0)
+ if (fd <= 0)
{
return;
}
@@ -63,7 +63,7 @@ void PSPDebugTrace (const char * filename, const char *format, ...) {
fd = sceIoOpen(filename, PSP_O_RDWR | PSP_O_CREAT | PSP_O_APPEND, 0777);
- if(fd <= 0)
+ if (fd <= 0)
{
return;
}