Commit 670911d6 authored by massiot's avatar massiot

* dvb.c: More fixes for people who like typing invalid values.


git-svn-id: svn://svn.videolan.org/dvblast/trunk@36 55d3f8b6-4a41-4d2d-a900-313d1436a5b8
parent ce00127c
...@@ -473,7 +473,7 @@ static int FrontendDoDiseqc(void) ...@@ -473,7 +473,7 @@ static int FrontendDoDiseqc(void)
} }
msleep(100000); /* Again, should be 15 ms */ msleep(100000); /* Again, should be 15 ms */
} }
else if ( i_satnum > 0xA ) else if ( i_satnum == 0xA || i_satnum == 0xB )
{ {
/* A or B simple diseqc ("diseqc-compatible") */ /* A or B simple diseqc ("diseqc-compatible") */
if( ioctl( i_frontend, FE_DISEQC_SEND_BURST, if( ioctl( i_frontend, FE_DISEQC_SEND_BURST,
......
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