mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #13638 from sum2012/AuCtx_minor
Fix AuCheckStreamDataNeeded function
This commit is contained in:
commit
0193fd278d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue