Skip to content

Commit

Permalink
silenced compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
WiSo committed Aug 6, 2012
1 parent 0ed2e36 commit 7ea673e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/VideoRenderers/BaseRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ inline void CBaseRenderer::ReorderDrawPoints()
}


int diff = (m_destRect.Height() - m_destRect.Width()) / 2;
int diff = (int) ((m_destRect.Height() - m_destRect.Width()) / 2);

for (int destIdx=0, srcIdx=pointOffset; destIdx < 4; destIdx++)
{
Expand Down

0 comments on commit 7ea673e

Please sign in to comment.