In order to cheat the game 2048 for fun, does anyone know how to change the random implementation on Windows or Linux? On a linux kernel, I guess that you reimplement the rand function simply like this:
double rand() {
return 0.0;
}
then rebuild your kernel.
But no idea on Windows.
I would appreciate any help on it.