commit 7085eb4a0b265c2e45a0d8c9aca9d7e35c847501
parent 5546a0fb1822ff6c3fe89f802f29eb13620c8d5f
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Mon, 20 Feb 2012 18:59:49 +0100
enabling font_data again like in fred's original implementation
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ansilove/ansilove.c b/ansilove/ansilove.c
@@ -1964,12 +1964,12 @@ void alTundraLoader(char *input, char output[], char font[], char bits[])
// determine the font we use to render the output
if (strcmp(font, "80x25") == 0) {
- //font_data = &font_pc_80x25;
+ font_data = &font_pc_80x50;
font_size_x = 8;
font_size_y = 16;
}
else if (strcmp(font, "80x50") == 0) {
- //font_data = &font_pc_80x50;
+ font_data = &font_pc_80x50;
font_size_x = 8;
font_size_y = 8;
}