Skip to content

Commit

Permalink
maybe don't pass a reference to rwops
Browse files Browse the repository at this point in the history
  • Loading branch information
Speak2Erase committed Aug 15, 2024
1 parent 27d615b commit 2c32a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/vorbissource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct VorbisSource : ALDataSource
: src(ops),
currentFrame(0)
{
int error = ov_open_callbacks(&src, &vf, 0, 0, OvCallbacks);
int error = ov_open_callbacks(src, &vf, 0, 0, OvCallbacks);

if (error)
{
Expand Down

0 comments on commit 2c32a59

Please sign in to comment.