diff options
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 0008852..a1f24b8 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]; |