Use larger outline.

This commit is contained in:
Josh Holtrop 2021-01-07 20:11:32 -05:00
parent 072abd788c
commit ef16a3367f
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 4a0727b535bb3164e48c6bb57194f737dfeb0aab
Subproject commit 8006e14aeaa2fe64d56da76cfb507b5840e5add4

View File

@ -240,7 +240,7 @@ OutlinedGlyph get_glyph(uint char_code)
{
return outlined_glyphs[char_code];
}
return outlined_glyphs[char_code] = new OutlinedGlyph(font, char_code, 80);
return outlined_glyphs[char_code] = new OutlinedGlyph(font, char_code, 150);
}
void draw_string(int x, int y, string s)