diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-22 00:19:58 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-22 00:19:58 +1000 |
commit | 4f09bcb7dc48dc9b0d97ce3a9f73ffc6eee49045 (patch) | |
tree | e94bb84660061941c12eb25455a1a855649416a7 /src/core | |
parent | da1ddc29ac15e511086b8b5343b735a34be1fcea (diff) |
error handling loading pbr textures
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.c b/src/core/core.c index fcb03a1..38777ba 100644 --- a/src/core/core.c +++ b/src/core/core.c @@ -45,8 +45,8 @@ void Core_Bringup() { arena model_arena = arena_create(malloc(model_data_max), model_data_max); Model_pool model_pool = Model_pool_create(&model_arena, 256, sizeof(Model)); - // g_core.models = model_pool; - // INFO("Created model pool allocator"); + g_core.models = model_pool; + INFO("Created model pool allocator"); // INFO("Creating default scene"); // scene_init(&g_core.default_scene); |