diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-02-21 11:28:02 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-02-21 11:28:02 +0000 |
| commit | 2eb8169a1ad3bd8c7960767a5bc471c8d8bc677e (patch) | |
| tree | 61084e834943ac5ee9d255ba3638c761b69d6738 /sys/dev/syscons/star | |
| parent | dfe53f1566ef6458d56c60889fe96ac9cdac692b (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons/star')
| -rw-r--r-- | sys/dev/syscons/star/star_saver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/syscons/star/star_saver.c b/sys/dev/syscons/star/star_saver.c index 00088528c8c3..a1f24b89fcc1 100644 --- a/sys/dev/syscons/star/star_saver.c +++ b/sys/dev/syscons/star/star_saver.c @@ -59,12 +59,12 @@ star_saver(video_adapter_t *adp, int blank) sc_softc_t *sc; scr_stat *scp; int cell, i; - char pattern[] = {"...........++++*** "}; + static u_char pattern[] = {"...........++++*** "}; #ifndef PC98 - char colors[] = {FG_DARKGREY, FG_LIGHTGREY, + static char colors[] = {FG_DARKGREY, FG_LIGHTGREY, FG_WHITE, FG_LIGHTCYAN}; #else - char colors[] = {FG_BLUE, FG_LIGHTGREY, + static char colors[] = {FG_BLUE, FG_LIGHTGREY, FG_LIGHTGREY, FG_CYAN}; #endif /* PC98 */ static u_short stars[NUM_STARS][2]; |
