gba-x3dtest

view src/logger.h @ 20:2e903e27e35a

fixed x3d_disable_texture added runtime teture checks in the rasterizer
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 01 Jul 2014 23:23:37 +0300
parents 0d2602a1b851
children
line source
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
4 enum {
5 LOG_SCREEN = 1,
6 LOG_DBG = 2
7 };
8 #define LOG_ALL 0xffff
10 void logmsg(unsigned short where, const char *fmt, ...);
12 #endif /* LOGGER_H_ */