diff options
author | Tharre <tharre3@gmail.com> | 2017-08-26 18:16:11 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2017-08-26 23:10:09 +0200 |
commit | 3d81d35fa2225d434b14c5e6230a2b5b9bedfe6e (patch) | |
tree | f1a63e437e9d99c0cec9969ce9bc56eacb50cb7d /out | |
parent | 5d35df94d62b76cb55c14e70b079ceb2c400b326 (diff) | |
download | redo-3d81d35fa2225d434b14c5e6230a2b5b9bedfe6e.tar.gz redo-3d81d35fa2225d434b14c5e6230a2b5b9bedfe6e.tar.xz redo-3d81d35fa2225d434b14c5e6230a2b5b9bedfe6e.zip |
Use the proper RNG called PCG instead of rand()
Fixes #7.
Diffstat (limited to 'out')
-rw-r--r-- | out/redo.do | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/out/redo.do b/out/redo.do index ee098a0..fd4536a 100644 --- a/out/redo.do +++ b/out/redo.do @@ -1,5 +1,5 @@ . ./config.sh -DEPS="redo.o build.o util.o filepath.o sha1.o DSV.o" +DEPS="redo.o build.o util.o filepath.o sha1.o DSV.o pcg.o" redo-ifchange $DEPS config.sh $CC -o $3 $DEPS $LDFLAGS |