Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: fix the USALS grace calculation
  • Loading branch information
perexg committed Sep 21, 2014
1 parent 6a86c96 commit fa1ce0a
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 @@ -143,7 +143,7 @@ linuxdvb_rotor_grace
if (idnode_is_instance(&lr->ld_id, &linuxdvb_rotor_gotox_class))
newpos = lr->lr_position; /* GotoX */
else
newpos = (lr->lr_sat_lon + 0.005) * 100; /* USALS */
newpos = (lr->lr_sat_lon + 0.05) * 10; /* USALS */

curpos = ls->ls_orbital_pos;
if (ls->ls_orbital_dir == 'W')
Expand Down

0 comments on commit fa1ce0a

Please sign in to comment.