Skip to content

Instantly share code, notes, and snippets.

View Peter0x44's full-sized avatar

Peter0x44

  • England
  • 05:45 (UTC +01:00)
View GitHub Profile
@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)
{