aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--audio/decoders/qdm2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decoders/qdm2.cpp b/audio/decoders/qdm2.cpp
index 749a0d64dd..7faa1df155 100644
--- a/audio/decoders/qdm2.cpp
+++ b/audio/decoders/qdm2.cpp
@@ -2636,7 +2636,7 @@ void QDM2Stream::qdm2_decode_super_block(void) {
delete d;
d = new Common::MemoryReadStream(header.data, header.size*8);
gb = new Common::BitStream8MSB(d);
- gb->getBits(next_index*8); // Skipping bits..
+ gb->skip(next_index*8);
if (next_index >= header.size)
break;