Name: Anonymous 2011-08-04 18:12
I noticed in a lot of game libraries that parameters are or'ed, like:
StartUp(init_this | init_that | init_the_other);
but doesnt bitwise or short circuit so that the first true parameter would return true?
StartUp(init_this | init_that | init_the_other);
but doesnt bitwise or short circuit so that the first true parameter would return true?