View Single Post
  #11  
Old 03-04-2007, 09:08 PM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
Quote:
Originally Posted by cbkbud View Post
Also, this.status = abs(temp.status - 1);?
Should be:
this.status = 1 - this.status;
or:
this.status = abs(this.status - 1);
or even this.status = !this.status;
Reply With Quote