summaryrefslogtreecommitdiff
path: root/src/std/mem.c
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-06-10 15:12:28 +1000
committerOmniscient <omniscient.oce@gmail.com>2024-06-10 15:12:28 +1000
commitae214fc4c9a1cac1969f64b2316d8ec431b33693 (patch)
tree35968674ad0f7dd9b0f655ccab44a96a62343d6a /src/std/mem.c
parent99f2476d7bb8479d543f080c209324c77c775737 (diff)
default renderer pipeline
Diffstat (limited to 'src/std/mem.c')
-rw-r--r--src/std/mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/mem.c b/src/std/mem.c
index ede1db4..5cc4304 100644
--- a/src/std/mem.c
+++ b/src/std/mem.c
@@ -104,7 +104,7 @@ void* void_pool_alloc(void_pool* pool, u32* out_raw_handle) {
TRACE("%ld %ld ", start, cur);
assert(cur > start);
u32 index = (u32)((cur - start) / pool->entry_size);
- printf("Index %d\n", index);
+ /* printf("Index %d\n", index); */
if (out_raw_handle != NULL) {
*out_raw_handle = index;
}