diff --git a/Core/HW/SimpleAudioDec.cpp b/Core/HW/SimpleAudioDec.cpp index b6a51438c90a..10159d7daa6d 100644 --- a/Core/HW/SimpleAudioDec.cpp +++ b/Core/HW/SimpleAudioDec.cpp @@ -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;