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.
Don't get suckered in by the comments -- they can be terribly misleading. Debug only code. -- Dave Storer