File tree 4 files changed +13
-13
lines changed
4 files changed +13
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,6 +11,18 @@ namespace fs = std::filesystem;
11
11
#define NOINLINE
12
12
#endif
13
13
14
+ #if defined(_OPENMP) && defined(_WINDOWS)
15
+ #define OMP_FOR_INDEX int
16
+ #else
17
+ #define OMP_FOR_INDEX std::vector<World::Coordinates>::size_type
18
+ #endif
19
+
20
+ #ifdef _WINDOWS
21
+ #define FSEEK fseek
22
+ #else
23
+ #define FSEEK fseeko
24
+ #endif
25
+
14
26
#define CHUNKSIZE 16
15
27
#define REGIONSIZE 32
16
28
#define MIN_TERRAIN_HEIGHT 0
Original file line number Diff line number Diff line change 1
1
#ifndef DRAW_PNG_H_
2
2
#define DRAW_PNG_H_
3
3
4
- #include " ./compat .h"
4
+ #include " ./helper .h"
5
5
#include < filesystem>
6
6
#include < logger.hpp>
7
7
#include < map>
Original file line number Diff line number Diff line change 2
2
#define WORLDLOADER_H_
3
3
4
4
#include " ./colors.h"
5
- #include " ./compat.h"
6
5
#include " ./helper.h"
7
6
#include < cstdlib>
8
7
#include < filesystem>
You can’t perform that action at this time.
0 commit comments