Skip to content

Commit

Permalink
ES1-1130: fix VG Issue (#5226)
Browse files Browse the repository at this point in the history
Priority: Low
Test Procedure: Same as Ticket
Sign-off: rajan_yadav@comcast.com
  • Loading branch information
ryadav115 authored May 24, 2024
1 parent 6632739 commit 1169392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SystemAudioPlayer/impl/AudioPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ void AudioPlayer::setVolume( int thisVol)
g_object_set(G_OBJECT(m_audioVolume), "stream-volume", (double)thisVol/100, NULL);
}
#elif defined(PLATFORM_REALTEK)
g_object_set(G_OBJECT(m_audioVolume), "volume", (double) 4.0 * (thisVol/100), NULL);
g_object_set(G_OBJECT(m_audioVolume), "volume", (double)thisVol/100, NULL);
#elif defined(PLATFORM_BROADCOM)
g_object_set(G_OBJECT(m_audioVolume), "volume", (double)thisVol/100, NULL);
#endif
Expand Down

0 comments on commit 1169392

Please sign in to comment.