replaced preprocessor constants with enum values
[rocksndiamonds.git] / src / libgame / text.h
index 24c1fd1fee4172826f8bb1d34d1cbcf6d8abd5bb..701213f66ae58b04b389e729026afcd2b7668b40 100644 (file)
 
 
 // default fonts
 
 
 // default fonts
-#define FONT_INITIAL_1         0
-#define FONT_INITIAL_2         1
-#define FONT_INITIAL_3         2
-#define FONT_INITIAL_4         3
+#define MAIN_FONT_INITIAL_1    0
+#define MAIN_FONT_INITIAL_2    1
+#define MAIN_FONT_INITIAL_3    2
+#define MAIN_FONT_INITIAL_4    3
 
 // font colors
 
 // font colors
-#define FC_RED                 FONT_INITIAL_1
-#define FC_BLUE                        FONT_INITIAL_2
-#define FC_GREEN               FONT_INITIAL_3
-#define FC_YELLOW              FONT_INITIAL_4
+#define FC_RED                 MAIN_FONT_INITIAL_1
+#define FC_BLUE                        MAIN_FONT_INITIAL_2
+#define FC_GREEN               MAIN_FONT_INITIAL_3
+#define FC_YELLOW              MAIN_FONT_INITIAL_4
 
 // text output definitions
 #define MAX_OUTPUT_LINESIZE    1024
 
 // text output definitions
 #define MAX_OUTPUT_LINESIZE    1024