What is the set of valid outputs for the following, according to the standard?
bool x;
cout << (x ? 1 : 2);
edit: unknown(google) has got it. In gcc my code was crashing because of sprite.setFrame(isPressed ? 0 : 1) with the conditional returning 28!
isPressed ? 0 : 1, GCC can just do anisPressed ^ 1internally. SoisPressedin your code probably had the bit-pattern representing29and GCC's^ 1operation made a 28 out of it. – Johannes Schaub - litb Nov 13 '10 at 18:34