Advertisement
Guest User

Untitled

a guest
Aug 10th, 2013
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. @@ -1576,6 +1576,20 @@ void cDevice::Action(void)
  2. bool DetachReceivers = false;
  3. bool DescramblingOk = false;
  4. int CamSlotNumber = 0;
  5. +
  6. + if (Pid == 169)
  7. + {
  8. + static char prev_counter=0;
  9. + char counter=b[3]&0xF;
  10. +
  11. + if (counter != ((++prev_counter)%16))
  12. + printf("%d instead of %d\n", counter, prev_counter%16);
  13. +
  14. + prev_counter = counter;
  15. + }
  16. +
  17. +
  18. +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement