15 lines
307 B
C++
15 lines
307 B
C++
#ifndef OUR_DICK_CONFIG_HPP
|
|
#define OUR_DICK_CONFIG_HPP
|
|
|
|
//multiple levels just so i can stop alsa errors without stopping everything else
|
|
#define OUR_DICK_DEBUG 1
|
|
|
|
#ifdef OUR_DICK_DEBUG
|
|
#include <cstdio>
|
|
#define debug_print(...) fprintf(stderr, __VA_ARGS__)
|
|
#else
|
|
#define debug_print(...)
|
|
#endif
|
|
|
|
#endif
|