diff options
author | Connor Lane Smith <cls@lubutu.com> | 2010-11-17 04:51:30 +0000 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2010-11-17 04:51:30 +0000 |
commit | 266f3dd311517c7048cbe805fa9cea33ef1a1af2 (patch) | |
tree | de8906d1468e822b5640a9af7a5aa4c6207305f8 | |
parent | 8d9ade36de4666835e49fe4366ff04cfe540dce6 (diff) |
removed unnecessary defines
-rw-r--r-- | draw.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -9,8 +9,6 @@ | |||
9 | 9 | ||
10 | #define MAX(a, b) ((a) > (b) ? (a) : (b)) | 10 | #define MAX(a, b) ((a) > (b) ? (a) : (b)) |
11 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) | 11 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
12 | #define FG(dc, col) ((col)[(dc)->invert ? ColBG : ColFG]) | ||
13 | #define BG(dc, col) ((col)[(dc)->invert ? ColFG : ColBG]) | ||
14 | #define DEFFONT "fixed" | 12 | #define DEFFONT "fixed" |
15 | 13 | ||
16 | static Bool loadfont(DC *dc, const char *fontstr); | 14 | static Bool loadfont(DC *dc, const char *fontstr); |