Updates for new version of the MakeHeader.py script.

This commit is contained in:
Hisham Muhammad
2006-06-06 20:41:01 +00:00
parent b95993fa22
commit 2f1f82ee87
25 changed files with 69 additions and 145 deletions

15
CRT.c
View File

@ -96,24 +96,15 @@ typedef enum ColorElements_ {
LAST_COLORELEMENT
} ColorElements;
extern int CRT_delay;
extern int CRT_colors[LAST_COLORELEMENT];
extern int CRT_colorScheme;
}*/
// TODO: centralize these in Settings.
/* private property */
int CRT_delay;
int CRT_delay = 0;
/* private property */
int CRT_colorScheme;
int CRT_colorScheme = 0;
/* private property */
int CRT_colors[LAST_COLORELEMENT];
int CRT_colors[LAST_COLORELEMENT] = { 0 };
// TODO: pass an instance of Settings instead.