Show
Ignore:
Timestamp:
08/06/08 14:49:02 (4 years ago)
Author:
mwhitworth
Message:

Use black as background color for term.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/user/xynth/demo/term/term.c

    r357 r833  
    622622                                int b; 
    623623                                s_colorrgb(s, chr_attr.fg_color, &r, &g, &b); 
     624//                              printf("%#X\n", chr_attr.fg_color); 
    624625                                s_setpixelrgba(s, x, y + FONTH - font->glyph.yMax - 4, r, g, b, *mat & 0xff); 
    625626                        } else { 
     
    10931094        window->surface->width = window->surface->buf->w; 
    10941095        window->surface->height = window->surface->buf->h; 
    1095         s_fillbox(window->surface, 0, 0, window->surface->width, window->surface->height, s_rgbcolor(window->surface, 255, 255, 255)); 
     1096        s_fillbox(window->surface, 0, 0, window->surface->width, window->surface->height, s_rgbcolor(window->surface, 0, 0, 0)); 
    10961097 
    10971098        s_font_init(&font, "veramono.ttf"); 
     
    10991100         
    11001101        chr_attr_reset(window); 
    1101         chr_attr_bg_color(window, 7); 
     1102        chr_attr_bg_color(window, 0); 
    11021103 
    11031104        term(window);