aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorYotam Barnoy2010-06-21 13:23:13 +0000
committerYotam Barnoy2010-06-21 13:23:13 +0000
commit57b8e2caaabebde88eb46d0d85d3c09414cdc778 (patch)
treee099b174a5d31971d53e1cd75e6119886e983d41 /backends
parent3c857be0c5cf397d364f9a6e23a095cfef0cda04 (diff)
downloadscummvm-rg350-57b8e2caaabebde88eb46d0d85d3c09414cdc778.tar.gz
scummvm-rg350-57b8e2caaabebde88eb46d0d85d3c09414cdc778.tar.bz2
scummvm-rg350-57b8e2caaabebde88eb46d0d85d3c09414cdc778.zip
PSP: removed default 'using ME' message
svn-id: r50112
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/psp/mp3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/mp3.cpp b/backends/platform/psp/mp3.cpp
index 972c5a8ba8..eab8670280 100644
--- a/backends/platform/psp/mp3.cpp
+++ b/backends/platform/psp/mp3.cpp
@@ -85,13 +85,13 @@ bool Mp3PspStream::initDecoder() {
}
} else {
if (sceUtilityLoadAvModule(PSP_AV_MODULE_AVCODEC) < 0) {
- PSP_ERROR("failed to load AVCODEC module.\n");
+ PSP_ERROR("failed to load AVCODEC module. ME cannot start.\n");
_decoderFail = true;
return false;
}
}
- PSP_INFO_PRINT("Using PSP's ME for MP3\n"); // important to know this is happening
+ PSP_DEBUG_PRINT("Using PSP's ME for MP3\n"); // important to know this is happening
_decoderInit = true;
return true;