Always use same level_int_t
continuous-integration/drone/push Build is passing Details

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
Deukhoofd 2020-09-18 20:13:35 +02:00
parent 2bb1f2ed4a
commit 0cdb5604e5
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 0 additions and 11 deletions

View File

@ -3,17 +3,6 @@
#include <cstdint>
#if LEVEL_U8
typedef uint8_t level_int_t;
#elif LEVEL_U16
typedef uint16_t level_int_t;
#elif LEVEL_U32
typedef uint32_t level_int_t;
#elif LEVEL_U64
typedef uint64_t level_int_t;
#else
#warning Level size was not specified, falling back to uint8_t
typedef uint8_t level_int_t;
#endif
#endif // CREATURELIB_DEFINES_HPP