Skip to content

Commit

Permalink
fix opus error msg log
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyDOGE committed Jul 28, 2022
1 parent de84690 commit 9a095d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/voice_codecs/opus/voiceencoder_opus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ bool VoiceEncoder_Opus::Init( int quality, int &rawFrameSize, int &encodedFrameS
m_Mode = opus_custom_mode_create( g_OpusOpts[m_iVersion].iSampleRate, g_OpusOpts[m_iVersion].iRawFrameSize, &iError );

if ( iError != 0 ) {
Msg( "Opus init failed with error %d", iError );
Msg( "Opus init failed with error %d\n", iError );
return false;
}

Expand Down

0 comments on commit 9a095d6

Please sign in to comment.