[WIN32] fixed: wrong member initialization
authorWiSo <wiso@xbmc.org>
Sat, 7 Dec 2013 16:39:25 +0000 (17:39 +0100)
committerWiSo <wiso@xbmc.org>
Sat, 7 Dec 2013 16:39:25 +0000 (17:39 +0100)
xbmc/cores/VideoRenderers/VideoShaders/WinVideoFilter.cpp

index 28146ee..f619cba 100644 (file)
@@ -81,7 +81,7 @@ D3DXMATRIX* CYUV2RGBMatrix::Matrix()
     m_mat._31 = matrix.m[0][2];
     m_mat._32 = matrix.m[1][2];
     m_mat._33 = matrix.m[2][2];
-    m_mat._44 = 0.0f;
+    m_mat._34 = 0.0f;
     m_mat._41 = matrix.m[0][3];
     m_mat._42 = matrix.m[1][3];
     m_mat._43 = matrix.m[2][3];