diff options
author | taxigps <taxigps@svn> | 2010-07-04 07:47:15 +0000 |
---|---|---|
committer | taxigps <taxigps@svn> | 2010-07-04 07:47:15 +0000 |
commit | febbabd87b3d35cce951e90b1db7919fbae20b5b (patch) | |
tree | ee1f696e30f1c5eda279a59649ab7648aa049b5e | |
parent | 37a1275f53b381404f8cee23094b02da04c3d36f (diff) |
fixed: Ticket #8346 - DVD subtitle color wrong
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31615 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/cores/dvdplayer/DVDPlayerSubtitle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/cores/dvdplayer/DVDPlayerSubtitle.cpp b/xbmc/cores/dvdplayer/DVDPlayerSubtitle.cpp index d84a1be543..fcd0950317 100644 --- a/xbmc/cores/dvdplayer/DVDPlayerSubtitle.cpp +++ b/xbmc/cores/dvdplayer/DVDPlayerSubtitle.cpp @@ -141,8 +141,8 @@ void CDVDPlayerSubtitle::SendMessage(CDVDMsg* pMsg) color[2] = t[3]; // Cb #else color[0] = t[2]; // Y - color[1] = t[1]; // Cr - color[2] = t[0]; // Cb + color[1] = t[0]; // Cr + color[2] = t[1]; // Cb #endif } m_dvdspus.m_bHasClut = true; |