Skip to content

Instantly share code, notes, and snippets.

@Peter0x44
Peter0x44 / colored_tracelog_example.c
Last active September 15, 2023 18:28
raylib - colored tracelog output
#include <stdio.h>
#include <stdarg.h>
#include "raylib.h"
// Custom logging funtion
void LogColored(int msgType, const char *text, va_list args)
{
switch (msgType)
{