Commit 681b4e18 authored by Benoit Steiner's avatar Benoit Steiner


Correction d'un bug dans la lecture de la version de la PMT
parent eee67fce
......@@ -491,7 +491,7 @@ static void DecodePgrmMapSection( u8* p_pms, input_thread_t* p_input )
// intf_DbgMsg("Section %d (last section %d)\n", i_current_section, i_last_section);
/* Is this an update of the description for this program ? */
i_version = (p_pms[5] >> 1) && 0x1F;
i_version = (p_pms[5] >> 1) & 0x1F;
if( p_pgrm->i_version != i_version )
{
intf_DbgMsg("Updating PMT for program %d\n", i_pgrm_number);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment