Comment Re:good luck hacking in to mine (Score 1) 104
I'm sure that I've told you this before, but:
const int one = 65536;
Is wrong. If you add 1 to 65,535 in a 16 bit unsigned integer you get 0, not 1.
I'm sure that I've told you this before, but:
const int one = 65536;
Is wrong. If you add 1 to 65,535 in a 16 bit unsigned integer you get 0, not 1.
If it happens once, it's a bug. If it happens twice, it's a feature. If it happens more than twice, it's a design philosophy.