angelcaru
Results
1
issues of
angelcaru
Simple reproduction: ```c #define CLAY_IMPLEMENTATION #include "clay.h" #include "clay_renderer_raylib.c" void onerror(Clay_ErrorData error) { fprintf(stderr, "Clay error: %.*s", error.errorText.length, error.errorText.chars); exit(1); } #define WIDTH 640 #define HEIGHT 480 int main(void) {...