diff options
| author | Max Horn | 2008-10-19 21:06:26 +0000 |
|---|---|---|
| committer | Max Horn | 2008-10-19 21:06:26 +0000 |
| commit | f1a0d7dfb215708af1cc7fa6252c45b6ee5eca90 (patch) | |
| tree | 3030c71ecf0eda2baa66cdaf4d37ca2a2b8bf13f /backends/platform/psp/trace.cpp | |
| parent | c501ef14506b810770e36978d91e38a3f9a991c8 (diff) | |
| download | scummvm-rg350-f1a0d7dfb215708af1cc7fa6252c45b6ee5eca90.tar.gz scummvm-rg350-f1a0d7dfb215708af1cc7fa6252c45b6ee5eca90.tar.bz2 scummvm-rg350-f1a0d7dfb215708af1cc7fa6252c45b6ee5eca90.zip | |
Code formatting fixes
svn-id: r34827
Diffstat (limited to 'backends/platform/psp/trace.cpp')
| -rw-r--r-- | backends/platform/psp/trace.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/backends/platform/psp/trace.cpp b/backends/platform/psp/trace.cpp index a4a409d455..00d19b582c 100644 --- a/backends/platform/psp/trace.cpp +++ b/backends/platform/psp/trace.cpp @@ -42,9 +42,7 @@ void PSPDebugTrace (const char *format, ...) { fd = sceIoOpen("MS0:/DTRACE.TXT", PSP_O_RDWR | PSP_O_CREAT | PSP_O_APPEND, 0777); if (fd <= 0) - { return; - } sceIoWrite(fd, (const void*)buff, bufsz); sceIoClose(fd); @@ -64,12 +62,9 @@ void PSPDebugTrace (const char * filename, const char *format, ...) { fd = sceIoOpen(filename, PSP_O_RDWR | PSP_O_CREAT | PSP_O_APPEND, 0777); if (fd <= 0) - { return; - } sceIoWrite(fd, (const void*)buff, bufsz); sceIoClose(fd); #endif } - |
