Changeset 1293


Ignore:
Timestamp:
11/06/06 02:13:38 (7 years ago)
Author:
sam
Message:
  • Got rid of the mono9.c renderer. We now have a .tlf font instead.
Location:
toilet/trunk/src
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • toilet/trunk/src/Makefile.am

    r1288 r1293  
    66        render.c render.h \ 
    77        filter.c filter.h \ 
    8         term.c mono9.c figlet.c 
     8        term.c figlet.c 
    99toilet_CFLAGS = `pkg-config --cflags cucul` 
    1010toilet_LDFLAGS = `pkg-config --libs cucul` @GETOPT_LIBS@ @ZLIB_LIBS@ 
  • toilet/trunk/src/main.c

    r1241 r1293  
    4848 
    4949    cx->export = "utf8"; 
    50     cx->font = "mono9"; 
     50    cx->font = "smblock"; 
    5151    cx->dir = "/usr/share/figlet/"; 
    5252 
  • toilet/trunk/src/render.c

    r1243 r1293  
    3838    cx->lines = 0; 
    3939    cx->cv = cucul_create_canvas(0, 0); 
    40  
    41     if(!strcasecmp(cx->font, "mono9")) 
    42         return init_big(cx); 
    4340 
    4441    if(!strcasecmp(cx->font, "term")) 
  • toilet/trunk/src/render.h

    r1243 r1293  
    1717 
    1818extern int init_tiny(context_t *); 
    19 extern int init_big(context_t *); 
    2019extern int init_figlet(context_t *); 
    2120 
Note: See TracChangeset for help on using the changeset viewer.