commit 37e13093a9e295b05a943037ccc4d2aef10c1d92 parent 1e2e195fdee584345c7c98ba0c99f421ca61e646 Author: Michael Savage <mikejsavage@gmail.com> Date: Sun Jan 17 16:58:04 +0000 Fix up rng includes Diffstat:
rng/fixed.cc | | | 2 | +- |
rng/fixed.h | | | 4 | ++-- |
rng/rng_utils.h | | | 2 | +- |
rng/well512.cc | | | 2 | +- |
rng/well512.h | | | 4 | ++-- |
diff --git a/rng/fixed.cc b/rng/fixed.cc @@ -8,7 +8,7 @@ * the speed and badness make it viable for particle systems and not much else */ -#include "intrinsics.h" +#include "../intrinsics.h" #include "fixed.h" static u32 nums[] = { diff --git a/rng/fixed.h b/rng/fixed.h @@ -1,8 +1,8 @@ #ifndef _RNG_FIXED_H_ #define _RNG_FIXED_H_ -#include "intrinsics.h" -#include "rng/rng_utils.h" +#include "../intrinsics.h" +#include "rng_utils.h" struct RNGFixed { u16 index; diff --git a/rng/rng_utils.h b/rng/rng_utils.h @@ -1,7 +1,7 @@ #ifndef _RNG_UTILS_H_ #define _RNG_UTILS_H_ -#include "intrinsics.h" +#include "../intrinsics.h" // TODO: this probably sucks template< typename T > diff --git a/rng/well512.cc b/rng/well512.cc @@ -3,7 +3,7 @@ * www.lomont.org/Math/Papers/2008/Lomont_PRNG_2008.pdf */ -#include "intrinsics.h" +#include "../intrinsics.h" #include "well512.h" void rng_well512_init( RNGWell512 * rng ) { diff --git a/rng/well512.h b/rng/well512.h @@ -1,8 +1,8 @@ #ifndef _WELL512_H_ #define _WELL512_H_ -#include "intrinsics.h" -#include "rng/rng_utils.h" +#include "../intrinsics.h" +#include "rng_utils.h" struct RNGWell512 { u32 state[ 16 ];