Skip to content

Commit

Permalink
Merge pull request xbmc#1898 from opdenkamp/trac13627
Browse files Browse the repository at this point in the history
[epg] fixed range check for EPG_EVENT_CONTENTMASK_USERDEFINED
  • Loading branch information
davilla committed Dec 7, 2012
2 parents 360af97 + b8b2807 commit a40af27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/epg/Epg.cpp
Expand Up @@ -773,7 +773,7 @@ const CStdString &CEpg::ConvertGenreIdToString(int iID, int iSubID)
iLabelId = (iSubID <= 3) ? 19660 + iSubID : 19660;
break;
case EPG_EVENT_CONTENTMASK_USERDEFINED:
iLabelId = (iSubID <= 3) ? 19676 + iSubID : 19676;
iLabelId = (iSubID <= 8) ? 19676 + iSubID : 19676;
break;
default:
break;
Expand Down

0 comments on commit a40af27

Please sign in to comment.