Commit 80b182de authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DTV: fix DVB-S autodetection

(cherry picked from commit 1c858fbdf23e7bfc93bcab47193ce5100cd61e7a)
parent b4567078
...@@ -645,7 +645,7 @@ static const delsys_t *GuessSystem (const char *scheme, dvb_device_t *dev) ...@@ -645,7 +645,7 @@ static const delsys_t *GuessSystem (const char *scheme, dvb_device_t *dev)
if (systems & DVB_C) if (systems & DVB_C)
return &dvbc; return &dvbc;
if (systems & DVB_S) if (systems & DVB_S)
return &dvbc; return &dvbs;
if (systems & DVB_T) if (systems & DVB_T)
return &dvbt; return &dvbt;
return NULL; return NULL;
......
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