summaryrefslogtreecommitdiff
path: root/base.cpp
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-12-10 10:20:50 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-12-10 10:20:50 -0500
commitbdb6a983a84995c144e7452cb4052de2b649577c (patch)
tree9a5d95a76ece73755eae491a5ef0fa809fb4d30c /base.cpp
parentcfe41fdfebe0913eeac99f8ac78ec52d5e00cc84 (diff)
fix windows build; add #version to shaders
Diffstat (limited to 'base.cpp')
-rw-r--r--base.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/base.cpp b/base.cpp
index 3a8cec9..95135a0 100644
--- a/base.cpp
+++ b/base.cpp
@@ -1,11 +1,5 @@
// this file includes functions, etc. used just about everywhere
-#if DEBUG
-#define logln(...) printf(__VA_ARGS__), printf("\n");
-#else
-#define logln(...)
-#endif
-
// allocates aligned temporary memory
static u8 *tmp_alloc(State *state, size_t bytes) {
u32 used = state->tmp_mem_used;