Browse Source

Correction d'un bug dans la lecture de la version de la PMT

pull/2/head
Benoit Steiner 27 years ago
parent
commit
681b4e183a
  1. 2
      src/input/input_psi.c

2
src/input/input_psi.c

@ -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);

Loading…
Cancel
Save