diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-15 13:41:05 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-15 13:41:05 +0100 |
commit | c268aeb9779b6e0562a2f0ab7668cffd62a27943 (patch) | |
tree | 242f1e82446b49ef94a9980938198439f70f0f65 /Source/Library | |
parent | e48f1166ae7402f973ea4aab8e53c7612459048c (diff) | |
download | Melon-c268aeb9779b6e0562a2f0ab7668cffd62a27943.tar.gz Melon-c268aeb9779b6e0562a2f0ab7668cffd62a27943.zip |
Game Of Life simulator fixed
Diffstat (limited to 'Source/Library')
-rw-r--r-- | Source/Library/Common/Rand.ns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Library/Common/Rand.ns.cpp b/Source/Library/Common/Rand.ns.cpp index 6323ccc..65b450c 100644 --- a/Source/Library/Common/Rand.ns.cpp +++ b/Source/Library/Common/Rand.ns.cpp @@ -2,7 +2,7 @@ namespace Rand { -u32int m = 2073741824, a = 50000, b = 1534; +u32int m = 2073741978, a = 50023, b = 1534097; u64int current = RANDOM_SEED; u64int rand() { |