mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-24 05:16:32 +02:00
Merge pull request #13638 from sum2012/AuCtx_minor
Fix AuCheckStreamDataNeeded function
This commit is contained in:
@@ -394,7 +394,7 @@ u32 AuCtx::AuSetLoopNum(int loop)
|
||||
// return 1 to read more data stream, 0 don't read
|
||||
int AuCtx::AuCheckStreamDataNeeded() {
|
||||
// If we would ask for bytes, then some are needed.
|
||||
if (AuStreamBytesNeeded() != 0) {
|
||||
if (AuStreamBytesNeeded() > 0) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user