mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Demote a very common log message from ERROR to DEBUG
This commit is contained in:
parent
5fdff10be5
commit
5d4f413085
1 changed files with 6 additions and 1 deletions
|
@ -677,7 +677,12 @@ static u32 sceAtracSetLoopNum(int atracID, int loopNum) {
|
|||
return err;
|
||||
}
|
||||
if (atrac->GetTrack().loopinfo.size() == 0) {
|
||||
return hleLogError(Log::ME, ATRAC_ERROR_NO_LOOP_INFORMATION, "no loop information");
|
||||
if (loopNum == -1) {
|
||||
// This is very common and not really a problem.
|
||||
return hleLogDebug(Log::ME, ATRAC_ERROR_NO_LOOP_INFORMATION, "no loop information to write to!");
|
||||
} else {
|
||||
return hleLogError(Log::ME, ATRAC_ERROR_NO_LOOP_INFORMATION, "no loop information to write to!");
|
||||
}
|
||||
}
|
||||
|
||||
atrac->SetLoopNum(loopNum);
|
||||
|
|
Loading…
Add table
Reference in a new issue