Skip to content

Commit

Permalink
[Ref] openmpt123: Silence warning.
Browse files Browse the repository at this point in the history
git-svn-id: https://source.openmpt.org/svn/openmpt/trunk/OpenMPT@21737 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Sep 24, 2024
1 parent 5e9dd23 commit c1b400e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openmpt123/openmpt123.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class realtime_audio_stream_raii : public write_buffers_interface {
#endif
#if MPT_OS_WINDOWS && !MPT_OS_WINDOWS_WINRT
} else if ( flags.driver == MPT_USTRING("waveout") || flags.driver.empty() ) {
impl = std::make_unique<waveout_stream_raii>( flags );
impl = std::make_unique<waveout_stream_raii>( flags, log );
#endif
#if defined( MPT_WITH_ALLEGRO42 )
} else if ( flags.driver == MPT_USTRING("allegro42") || flags.driver.empty() ) {
Expand Down
2 changes: 1 addition & 1 deletion openmpt123/openmpt123_waveout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class waveout_stream_raii : public write_buffers_interface {
std::vector<std::vector<char> > wavebuffers;
std::deque<char> byte_queue;
public:
waveout_stream_raii( commandlineflags & flags )
waveout_stream_raii( commandlineflags & flags, concat_stream<mpt::ustring> & /* log */ )
: waveout(NULL)
, num_channels(0)
, num_chunks(0)
Expand Down

0 comments on commit c1b400e

Please sign in to comment.