This commit is contained in:
Charlie 2024-07-11 20:38:26 +02:00
parent 2a843fe7aa
commit e1aafd8220
2 changed files with 3 additions and 8 deletions

View file

@ -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"

View file

@ -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();