X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fstm%2Fao-parse-font.5c;h=152d4e8388c365d7041740b8b0d339fdf38b3ac8;hb=HEAD;hp=fe78585447298064eb99c1b25b33df451dc0956f;hpb=6da2f5846f2d28ea1f09f60ef2cc3f68113ac62a;p=fw%2Faltos diff --git a/src/stm/ao-parse-font.5c b/src/stm/ao-parse-font.5c index fe785854..152d4e83 100644 --- a/src/stm/ao-parse-font.5c +++ b/src/stm/ao-parse-font.5c @@ -154,13 +154,13 @@ glyph[*] read_font(file f) { glyph[*] font; void init () { - twixt (file f = File::open("ao_lcd_font.h", "r"); File::close(f)) { + twixt (file f = File::open("ao_lcd_font_bits.h", "r"); File::close(f)) { font = read_font(f); } } void dump() { - twixt(file f = File::open("ao_lcd_font.h.new", "w"); File::close(f)) { + twixt(file f = File::open("ao_lcd_font_bits.h.new", "w"); File::close(f)) { for (int i = 0; i < dim(font); i++) { File::fprintf (f, "\t[%d] = 0x%04x,\n", i, glyph_value(font[i])); File::fprintf (f, "/*\n");