I\'m making a game in C++ and it involves filling tiles with random booleans (either yes or no) whether it is yes or no is decided by rand() % 1. It doesn\'t fe
rand() % 1
The lowest bits of standard random number generators aren't very random, this is a well known problem.
I'd look into the boost random number library.