diff options
author | Mattes D <github@xoft.cz> | 2014-11-17 17:13:42 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-17 17:13:42 +0100 |
commit | faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1 (patch) | |
tree | a7e3f5e1e177cc5f90bca2613c99b336e02349fc /src/Noise.cpp | |
parent | Added cImprovedNoise implementation. (diff) | |
download | cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.tar cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.tar.gz cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.tar.bz2 cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.tar.lz cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.tar.xz cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.tar.zst cuberite-faf0ce3d7f001d6725f3fdaa7c69a56ed40955f1.zip |
Diffstat (limited to 'src/Noise.cpp')
-rw-r--r-- | src/Noise.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Noise.cpp b/src/Noise.cpp index 56d39395d..d3098c295 100644 --- a/src/Noise.cpp +++ b/src/Noise.cpp @@ -2,7 +2,7 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Noise.h" -#include "OSSupport\Timer.h" +#include "OSSupport/Timer.h" #define FAST_FLOOR(x) (((x) < 0) ? (((int)x) - 1) : ((int)x)) |