Skip to content

Commit

Permalink
Merge pull request #59 from fetzerch/retroplayer_audiofix
Browse files Browse the repository at this point in the history
[gameclient] Fix broken audio in some cores
  • Loading branch information
garbear committed May 19, 2016
2 parents 33159f8 + a31f887 commit 0687425
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xbmc/games/addons/GameClient.cpp
Expand Up @@ -622,14 +622,14 @@ void CGameClient::CloseStream(GAME_STREAM_TYPE stream)
{
case GAME_STREAM_AUDIO:
{
if (m_video)
m_video->CloseStream();
if (m_audio)
m_audio->CloseStream();
break;
}
case GAME_STREAM_VIDEO:
{
if (m_audio)
m_audio->CloseStream();
if (m_video)
m_video->CloseStream();
break;
}
default:
Expand Down

0 comments on commit 0687425

Please sign in to comment.