diff options
author | nikitalita <69168929+nikitalita@users.noreply.github.com> | 2023-12-10 02:47:52 -0800 |
---|---|---|
committer | nikitalita <69168929+nikitalita@users.noreply.github.com> | 2023-12-10 02:47:52 -0800 |
commit | 86a914575fba337f5379dc0970676b9cbfdd966d (patch) | |
tree | d6284249d6bc619c72cb0dc7d9345602473f2c99 | |
parent | b94eb58d35b3dd8a9f522bc90df0db73862ef326 (diff) | |
download | redot-engine-86a914575fba337f5379dc0970676b9cbfdd966d.tar.gz |
fix `next_ogg_packet` never returning false
-rw-r--r-- | modules/ogg/ogg_packet_sequence.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/ogg/ogg_packet_sequence.cpp b/modules/ogg/ogg_packet_sequence.cpp index 1100367f03..1e6a9bbb6a 100644 --- a/modules/ogg/ogg_packet_sequence.cpp +++ b/modules/ogg/ogg_packet_sequence.cpp @@ -159,9 +159,7 @@ bool OggPacketSequencePlayback::next_ogg_packet(ogg_packet **p_packet) const { *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; } |