diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-12-29 06:43:38 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-12-29 06:43:38 +0100 |
commit | bf714a8a893362c38fd825c91c8559f4ed42f4a5 (patch) | |
tree | b418e79d38801e9f3d9e7c5f4069eb4c30fc4ef7 /gen_font.c | |
parent | 2d6c8fec45b23a8a28668ecf3ef281139ab778a7 (diff) | |
download | saw-bf714a8a893362c38fd825c91c8559f4ed42f4a5.zip |
Replace font
Diffstat (limited to 'gen_font.c')
-rw-r--r-- | gen_font.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,12 +7,13 @@ exit #include <assert.h> int main(int argc, char **argv) { - FILE *in = fopen("black_chancery.ttf", "rb"); + FILE *in = fopen("domitian_roman.ttf", "rb"); FILE *out = fopen("source/saw/font.inl.h", "wb"); assert(in != NULL); assert(out != NULL); - fprintf(out, "// \"Black Chancery\" by Doug Miles\n//\n\n"); + fprintf(out, + "// \"Domitian-Roman\" by Daniel Benjamin Miller\n//\n\n"); fprintf(out, "#ifndef SAW_FONT_INL_H\n"); fprintf(out, "#define SAW_FONT_INL_H\n\n"); fprintf(out, "#include \"../kit/types.h\"\n\n"); |