summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-17 17:13:42 +0100
committerMattes D <github@xoft.cz>2014-11-17 17:13:42 +0100
commitfaf0ce3d7f001d6725f3fdaa7c69a56ed40955f1 (patch)
treea7e3f5e1e177cc5f90bca2613c99b336e02349fc
parentAdded cImprovedNoise implementation. (diff)
downloadcuberite-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
-rw-r--r--src/Noise.cpp2
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))