diff options
Diffstat (limited to 'src/decoder/plugins/VorbisDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/plugins/VorbisDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/plugins/VorbisDecoderPlugin.cxx b/src/decoder/plugins/VorbisDecoderPlugin.cxx index fd110f457..d1cf6fae4 100644 --- a/src/decoder/plugins/VorbisDecoderPlugin.cxx +++ b/src/decoder/plugins/VorbisDecoderPlugin.cxx @@ -88,7 +88,7 @@ static long ogg_tell_cb(void *data) { struct vorbis_input_stream *vis = (struct vorbis_input_stream *)data; - return (long)vis->input_stream->offset; + return (long)vis->input_stream->GetOffset(); } static const ov_callbacks vorbis_is_callbacks = { |