comparison src/main.c @ 50:e2ac88d85aec

Fix font filename.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 06 Aug 2013 15:40:29 +0300
parents a4a3700f9c96
children ca665ce720ec
comparison
equal deleted inserted replaced
49:1efee62c0f96 50:e2ac88d85aec
199 normal.foreground_color = white; 199 normal.foreground_color = white;
200 normal.foreground_color.r = 0.45; 200 normal.foreground_color.r = 0.45;
201 normal.foreground_color.g = 0.65; 201 normal.foreground_color.g = 0.65;
202 normal.foreground_color.b = 0.45; 202 normal.foreground_color.b = 0.45;
203 203
204 normal.font = texture_font_new( atlas, "data/fonts/term.ttf", 33 ); 204 normal.font = texture_font_new( atlas, "data/fonts/term.TTF", 33 );
205 205
206 markup_t bold = normal; 206 markup_t bold = normal;
207 bold.bold = 1; 207 bold.bold = 1;
208 bold.font = texture_font_new( atlas, "data/fonts/VeraMoBd.ttf", 23 ); 208 bold.font = texture_font_new( atlas, "data/fonts/VeraMoBd.ttf", 23 );
209 209