Sometimes I want to print the value of a variable (or something else) in the console with printf. The problem is that, when compiling the C-Programm with GCC and adding the flags "-Wl,--subsystem,windows", not only Raylib prints are disabled but also the other prints. Is it possible to disable JUST the prints of raylib?
Until now I tried so: gcc main.c -O3 -o snake.exe -lm -lz -lcurl -O1 -Wall -std=c99 -Wno-missing-braces -I include/ -L lib/ -lraylib -lopengl32 -lgdi32 -lwinmm -lcurl -Wl,--subsystem,windows && snake.exe
What do I have to change?