diff options
author | lordjaxom <lordjaxom> | 2005-01-12 21:23:20 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-12 21:23:20 +0000 |
commit | 78100b482c52309c5d5c69913b06b2669b7d7488 (patch) | |
tree | 8370e8cbc91c89f82c55ccb0dd340aa3b131e024 | |
parent | 0c7a3a9d275d411005171f9ffe9adc9972d70257 (diff) | |
download | vdr-plugin-text2skin-78100b482c52309c5d5c69913b06b2669b7d7488.tar.gz vdr-plugin-text2skin-78100b482c52309c5d5c69913b06b2669b7d7488.tar.bz2 |
- fixed audio channel return value
-rw-r--r-- | display.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* - * $Id: display.c,v 1.8 2005/01/11 17:59:04 lordjaxom Exp $ + * $Id: display.c,v 1.9 2005/01/12 21:23:20 lordjaxom Exp $ */ #include "render.h" @@ -1032,7 +1032,7 @@ cxType cText2SkinDisplayTracks::GetTokenData(const txToken &Token) return mItems.size() > (uint)Token.Index && mCurrentItem == (uint)Token.Index; case tAudioChannel: - return mAudioChannel; + return ChannelName(mAudioChannel); default: return cText2SkinRender::GetTokenData(Token); |