aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/psp/trace.h
diff options
context:
space:
mode:
authorYotam Barnoy2010-07-13 08:00:22 +0000
committerYotam Barnoy2010-07-13 08:00:22 +0000
commit762c569207f778b5b3efad9414a3cfe943424316 (patch)
tree2a9c10ea1d55fb611d08cefe8f468cef67ede1cd /backends/platform/psp/trace.h
parent03c0faa5d76f547603ee6389cdf958e2a6f0f43d (diff)
downloadscummvm-rg350-762c569207f778b5b3efad9414a3cfe943424316.tar.gz
scummvm-rg350-762c569207f778b5b3efad9414a3cfe943424316.tar.bz2
scummvm-rg350-762c569207f778b5b3efad9414a3cfe943424316.zip
PSP: Typos in trace.h
svn-id: r50844
Diffstat (limited to 'backends/platform/psp/trace.h')
-rw-r--r--backends/platform/psp/trace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/trace.h b/backends/platform/psp/trace.h
index ade8fd7214..5c0ea86e42 100644
--- a/backends/platform/psp/trace.h
+++ b/backends/platform/psp/trace.h
@@ -32,9 +32,9 @@
/* Choose to print to file/screen/both */
#ifdef __PSP_PRINT_TO_FILE__
- #define __PSP_PRINT__(format,...) PSPDebugTrace(false, format, ## __VA_ARGS__)
+ #define __PSP_PRINT__(format,...) PspDebugTrace(false, format, ## __VA_ARGS__)
#elif defined __PSP_PRINT_TO_FILE_AND_SCREEN__
- #define __PSP_PRINT__(format,...) PSPDebugTrace(true, format, ## __VA_ARGS__)
+ #define __PSP_PRINT__(format,...) PspDebugTrace(true, format, ## __VA_ARGS__)
#else /* default - print to screen */
#define __PSP_PRINT__(format,...) fprintf(stderr, format, ## __VA_ARGS__)
#endif /* PSP_PRINT_TO_FILE/SCREEN */