Skip to content

Commit

Permalink
... and fixed the typo in d108eaf
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed Jan 11, 2013
1 parent d108eaf commit 55d0a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/epg/GUIEPGGridContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ void CGUIEPGGridContainer::Render()
{
/* first program starts before current view */
int startBlock = blockOffset - 1;
while (startBlock > 0 && m_gridIndex[channel][startBlock].item == item)
while (startBlock >= 0 && m_gridIndex[channel][startBlock].item == item)
startBlock--;

block = startBlock + 1;
Expand Down

0 comments on commit 55d0a0a

Please sign in to comment.