Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. diff celhpf.cpp celhpf.cpp~
  2.  
  3. 54,55c54,55
  4. <
  5. < while(hlPath->HasNext())
  6. ---
  7. > iMapNode* dst = hlPath->Next();
  8. > while(1)
  9. 57,59d56
  10. < // get the next destinate
  11. < iMapNode* dst = hlPath->Next();
  12. <
  13. 65,67c62,70
  14. <
  15. < // set current destinateion as the source for next point
  16. < src = dst;
  17. ---
  18. > if(hlPath->HasNext())
  19. > {
  20. > src = hlPath->Next();
  21. > dst = hlPath->Next();
  22. > }
  23. > else
  24. > {
  25. > break;
  26. > }
  27. 69c72
  28. <
  29. ---
  30. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement