diff options
-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; |