View Single Post
  #21  
Old 03-05-2007, 07:39 PM
Kristi Kristi is offline
Bowie's Deciple
Kristi's Avatar
Join Date: Dec 2003
Location: Boston, MA
Posts: 748
Kristi has a spectacular aura aboutKristi has a spectacular aura about
Send a message via AIM to Kristi Send a message via MSN to Kristi
Quote:
Originally Posted by godofwarares View Post
Adds if the integer is positive, subtracts if negative . . . Some stupid unneeded operator ._.
Gramatically speaking, what you just said would be adding the absolute value, because subtracting a number when it is negative is like adding its positive, and actually, that is NOT what it is doing, its simply adding the negative of a variable.

In this case, this.speed +=- mousewheeldelta is better written as
this.speed -= mousewheeldelta
__________________
Reply With Quote