medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6e7440f1c1cb3c30516d7bfaf7acbcb730e2e363
parent 39d6a2a617802eb48a0737d261bc490411e9cbd1
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat Jun  4 21:44:29 +0100

rng_fixed -> rng_next

Diffstat:
rng/fixed.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rng/fixed.cc b/rng/fixed.cc @@ -25,6 +25,6 @@ u32 rng_fixed_next( RNGFixed * rng ) { return ret; } -u32 rng_fixed( RNGFixed * rng ) { +u32 rng_next( RNGFixed * rng ) { return rng_fixed_next( rng ); }