diff options
| author | austriancoder <austriancoder> | 2004-08-12 21:38:43 +0000 |
|---|---|---|
| committer | austriancoder <austriancoder> | 2004-08-12 21:38:43 +0000 |
| commit | 89ecbf1a8b06bd678b379ab4865e85ed9e2fb8b8 (patch) | |
| tree | e71a448ab6be42dcc2b8175ad9076dea7b7756f0 | |
| parent | ea4d7c6dd0db6f0ed224a240a65bbbbaffedfb33 (diff) | |
| download | vdr-plugin-dxr3-89ecbf1a8b06bd678b379ab4865e85ed9e2fb8b8.tar.gz vdr-plugin-dxr3-89ecbf1a8b06bd678b379ab4865e85ed9e2fb8b8.tar.bz2 | |
fixed cDxr3Interface::SetAudioDigitalPCM()
| -rw-r--r-- | HISTORY | 1 | ||||
| -rw-r--r-- | dxr3interface.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -235,3 +235,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - fixed output of anamorphic video, if tv aspect is configured to 16:9 in DVB setup menu thanks Seppo Ingalsuo <seppo.ingalsuo@iki.fi> - rewrote i18n support +- fixed void cDxr3Interface::SetAudioDigitalPCM() - thanks to Stephan Skrodzki <skrodzki@contcast.de> for patch
\ No newline at end of file diff --git a/dxr3interface.c b/dxr3interface.c index 052cd43..23437b1 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -174,7 +174,7 @@ void cDxr3Interface::SetAudioDigitalPCM() int ioval = 0; Lock(); - if (m_ExternalReleased && m_audioMode != EM8300_AUDIOMODE_DIGITALPCM) + if (!m_ExternalReleased && m_audioMode != EM8300_AUDIOMODE_DIGITALPCM) { int prevMode = m_audioMode; m_audioMode = ioval = EM8300_AUDIOMODE_DIGITALPCM; |
