View Single Post
  #15  
Old 08-13-2004, 08:17 AM
fathernitwit
Developer
 
Join Date: Jul 2004
Posts: 773
Default

you can use the bits of an integer to represent the flags....

OR (| not ||) their status with 0x01, 0x02, 0x04, or 0x08 etc to set flags,
AND (& not &&amp their status with them to check them...

thats how a lot of things work in the emu and everywhere else in programming, it works very well.
Reply With Quote