From e1aafd8220e48002bde75f76f3b3a2e775b73643 Mon Sep 17 00:00:00 2001 From: Charlie <66182434+asbott@users.noreply.github.com> Date: Thu, 11 Jul 2024 20:38:26 +0200 Subject: [PATCH] 0.00.005 --- build.c | 7 +------ oogabooga/tests.c | 4 ++-- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/build.c b/build.c index f01dcac..18577c8 100644 --- a/build.c +++ b/build.c @@ -3,10 +3,6 @@ /// // Build config stuff -// #Temporary -#define RUN_TESTS 0 -#define OOGABOOGA_DEV 1 - #define INITIAL_PROGRAM_MEMORY_SIZE MB(5) typedef struct Context_Extra { @@ -30,13 +26,12 @@ typedef struct Context_Extra { // // this is a minimal starting point for new projects. Copy & rename to get started -// #include "oogabooga/examples/minimal_game_loop.c" +#include "oogabooga/examples/minimal_game_loop.c" // #include "oogabooga/examples/text_rendering.c" // #include "oogabooga/examples/custom_logger.c" // #include "oogabooga/examples/renderer_stress_test.c" // #include "oogabooga/examples/tile_game.c" -#include "oogabooga/examples/audio_test.c" // This is where you swap in your own project! // #include "entry_yourepicgamename.c" diff --git a/oogabooga/tests.c b/oogabooga/tests.c index 3d15322..71cedb9 100644 --- a/oogabooga/tests.c +++ b/oogabooga/tests.c @@ -1214,7 +1214,7 @@ void test_sort() { void oogabooga_run_tests() { - /*print("Testing allocator... "); + print("Testing allocator... "); test_allocator(true); print("OK!\n"); @@ -1248,7 +1248,7 @@ void oogabooga_run_tests() { print("Testing mutex... "); test_mutex(); - print("OK!\n");*/ + print("OK!\n"); print("Testing radix sort... "); test_sort();