removed unnecessary defines

This commit is contained in:
Connor Lane Smith 2010-11-17 04:51:30 +00:00
parent 8d9ade36de
commit 266f3dd311
1 changed files with 0 additions and 2 deletions

2
draw.c
View File

@ -9,8 +9,6 @@
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define FG(dc, col) ((col)[(dc)->invert ? ColBG : ColFG])
#define BG(dc, col) ((col)[(dc)->invert ? ColFG : ColBG])
#define DEFFONT "fixed"
static Bool loadfont(DC *dc, const char *fontstr);