fix `next_ogg_packet` never returning false

This commit is contained in:
nikitalita 2023-12-10 02:47:52 -08:00
parent b94eb58d35
commit 86a914575f
1 changed files with 1 additions and 3 deletions

View File

@ -159,9 +159,7 @@ bool OggPacketSequencePlayback::next_ogg_packet(ogg_packet **p_packet) const {
*p_packet = packet; *p_packet = packet;
if (!packet->e_o_s) { // Added this so it doesn't try to go to the next packet if it's the last packet of the file. packet_cursor++;
packet_cursor++;
}
return true; return true;
} }