aboutsummaryrefslogtreecommitdiff
path: root/src/debug.h
blob: 75726a03fd556b01124fc17eedf37ac4246d7746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

// Toggles global debug
/* #define ENABLE_DEBUG */

#ifdef ENABLE_DEBUG
#define debug(x) (x)
#else
#define debug(x)
#endif