mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-15 06:28:07 +00:00
Fix an unsigned less than 0 warning.
This commit is contained in:
parent
1479a6dd32
commit
a2f4efa50f
@ -239,7 +239,7 @@ static u32 sceAacInit(u32 id)
|
||||
delete aac;
|
||||
return ERROR_AAC_INVALID_ADDRESS;
|
||||
}
|
||||
if (aac->startPos < 0 || aac->startPos > aac->endPos) {
|
||||
if (aac->startPos > aac->endPos) {
|
||||
ERROR_LOG(ME, "sceAacInit() AAC INVALID startPos %lli endPos %lli", aac->startPos, aac->endPos);
|
||||
delete aac;
|
||||
return ERROR_AAC_INVALID_PARAMETER;
|
||||
|
Loading…
x
Reference in New Issue
Block a user