1
0
Fork 0

Removed unnecessary #includes

This commit is contained in:
Tiger Wang 2014-11-23 17:13:40 +00:00
parent 79e5b82354
commit 2ae4d2a96a
2 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@
#include "Globals.h"
#include "Noise3DGenerator.h"
#include "../OSSupport/File.h"
#include "../OSSupport/Timer.h"
#include "../IniFile.h"
#include "../LinearInterpolation.h"
#include "../LinearUpscale.h"

View File

@ -2,7 +2,6 @@
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Noise.h"
#include "OSSupport/Timer.h"
#define FAST_FLOOR(x) (((x) < 0) ? (((int)x) - 1) : ((int)x))