diff --git a/xlesses.c b/xlesses.c index 967ebfe..c88e69a 100644 --- a/xlesses.c +++ b/xlesses.c @@ -10,7 +10,7 @@ #define XLESSES_SOURCE #include -#include + char * blesses_window_title = "xolatile"; int blesses_window_width = 640; int blesses_window_height = 480; @@ -177,7 +177,7 @@ void blesses_render_string (char * string, int x, int y, int foreground, int bac do { if (string [offset] == '\t') { - x += BLESSES_FONT_WIDTH * 3; + x += BLESSES_FONT_WIDTH * BLESSES_FONT_TABULATOR; } else if (string [offset] == '\n') { y += BLESSES_FONT_HEIGHT; x *= 0; diff --git a/xlesses.h b/xlesses.h index 68089db..d38b47a 100644 --- a/xlesses.h +++ b/xlesses.h @@ -10,7 +10,6 @@ #define XLESSES_HEADER #include -#include #include #include @@ -19,6 +18,8 @@ #define BLESSES_FONT_WIDTH (8) #define BLESSES_FONT_HEIGHT (8) +#define BLESSES_FONT_TABULATOR (4) + #define BLESSES_SIGNAL_COUNT (144) extern char * blesses_window_title;