Make Debug only available in debug builds.

This commit is contained in:
King_DuckZ 2017-03-17 20:08:12 +00:00
parent 3a05564be9
commit 1eeb944e68
1 changed files with 7 additions and 0 deletions

View File

@ -23,9 +23,16 @@
#include <cstdint>
namespace curry {
#if !defined(NDEBUG)
BETTER_ENUM(DrawaLayerNames, uint16_t,
Background,
Debug,
Characters
)
#else
BETTER_ENUM(DrawaLayerNames, uint16_t,
Background,
Characters
)
#endif
} //namespace curry