Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb rotor: Fix a little typo in USALS formula
  • Loading branch information
perexg committed Dec 16, 2014
1 parent abea3dd commit 932ade3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_rotor.c
Expand Up @@ -228,7 +228,7 @@ sat_angle( linuxdvb_rotor_t *lr, linuxdvb_satconf_ele_t *ls )
if (lsp->ls_site_lon_west)
site_lon = 360 - site_lon;
if (sat_lon < 0)
sat_lon = 360 - sat_lon;
sat_lon = 360 + sat_lon;

double azimuth, elevation;

Expand Down

0 comments on commit 932ade3

Please sign in to comment.