Browse Source

* Initialise colours to default/transparent instead of lightgray/black.

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
6bae0e64cc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cucul/cucul.c

+ 2
- 2
cucul/cucul.c View File

@@ -63,8 +63,8 @@ cucul_canvas_t * cucul_create_canvas(unsigned int width, unsigned int height)

cv->refcount = 0;

cv->fgcolor = CUCUL_COLOR_LIGHTGRAY;
cv->bgcolor = CUCUL_COLOR_BLACK;
cv->fgcolor = CUCUL_COLOR_DEFAULT;
cv->bgcolor = CUCUL_COLOR_TRANSPARENT;

cv->width = cv->height = 0;
cv->chars = NULL;


Loading…
Cancel
Save