Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. (Globals :: m_nTickbaseShift, 62);
  2.  
  3. should be
  4.  
  5. (Globals :: m_nTickbaseShift, 16);
  6.  
  7. since you cant shift as much anymore
  8.  
  9. and also
  10. Globals::m_nTickbaseShift = TIME_TO_TICKS(2.0f)
  11.  
  12. should be
  13. Globals::m_nTickbaseShift = TIME_TO_TICKS(0.2f)
  14.  
  15. 0.2 equals 16 ticks iirc
  16.  
  17. or you could make the shift amount adjustable
  18.  
  19. Globals::m_nTickbaseShift = settings.tick_amount
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement