aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/psp/mp3.cpp
diff options
context:
space:
mode:
authorYotam Barnoy2010-06-21 13:58:51 +0000
committerYotam Barnoy2010-06-21 13:58:51 +0000
commitb5a25a6e1988c11929fe68cc9e5786bf738b21ce (patch)
treea9d83d6d3dc5f44c3257d6f25fdcdf45052fda40 /backends/platform/psp/mp3.cpp
parent57b8e2caaabebde88eb46d0d85d3c09414cdc778 (diff)
downloadscummvm-rg350-b5a25a6e1988c11929fe68cc9e5786bf738b21ce.tar.gz
scummvm-rg350-b5a25a6e1988c11929fe68cc9e5786bf738b21ce.tar.bz2
scummvm-rg350-b5a25a6e1988c11929fe68cc9e5786bf738b21ce.zip
PSP: errors from both ScummVM and the PSP port now print to file by default. This should make debugging easier, especially for users.
svn-id: r50113
Diffstat (limited to 'backends/platform/psp/mp3.cpp')
-rw-r--r--backends/platform/psp/mp3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/psp/mp3.cpp b/backends/platform/psp/mp3.cpp
index eab8670280..e25891396b 100644
--- a/backends/platform/psp/mp3.cpp
+++ b/backends/platform/psp/mp3.cpp
@@ -319,7 +319,7 @@ void Mp3PspStream::decodeMP3Data() {
// This function blocks. We'll want to put it in a thread
int ret = sceAudiocodecDecode(_codecParams, 0x1002);
if (ret < 0) {
- PSP_ERROR("failed to decode MP3 data in ME. sceAudiocodecDecode returned 0x%x\n", ret);
+ PSP_INFO_PRINT("failed to decode MP3 data in ME. sceAudiocodecDecode returned 0x%x\n", ret);
// handle error here
}