Use CC for general compiling; get rid of more printfs; display opengl version on load

This commit is contained in:
2022-11-23 23:29:50 +00:00
parent 29c001e7df
commit a0f016a011
8 changed files with 80 additions and 103 deletions

View File

@@ -1,5 +1,4 @@
#include "timer.h"
#include <GLFW/glfw3.h>
#include <stdlib.h>
#include <stb_ds.h>;
@@ -100,4 +99,4 @@ void arrwalk(void *arr, void (*fn)(void *data))
{
for (int i = 0; i < arrlen(arr); i++)
fn(&arr[i]);
}
}