1allegro_404_char(3) Allegro manual allegro_404_char(3)
2
3
4
6 allegro_404_char - Character used when Allegro cannot find a glyph.
7
9 #include <allegro.h>
10
11
12 extern int allegro_404_char;
13
15 When Allegro cannot find a glyph it needs in a font, it will instead
16 output the character given in allegro_404_char. By default, this is set
17 to the caret symbol, `^', but you can change this global to use any
18 other character instead. Example:
19
20 /* Show unknown glyphs with an asterisk. */
21 allegro_404_char = '*';
22
23
25 font(3)
26
27
28
29Allegro version 4.2.2 allegro_404_char(3)