diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-11-25 09:17:00 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-11-25 09:17:00 -0500 |
commit | 4e51199f1103d2d9daa563b63d0e8f22c36fbe8a (patch) | |
tree | 707b7cf557f1b9937a58c66f593847bd957e07b3 /text.c | |
parent | e3aa668ef358739148adb1a4965b629d07467575 (diff) |
got windows build to work
Diffstat (limited to 'text.c')
-rw-r--r-- | text.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -5,7 +5,6 @@ no_warn_start #include "lib/stb_truetype.h" no_warn_end -#include <stdarg.h> #include <stdlib.h> #include <GL/gl.h> @@ -167,7 +166,7 @@ void text_chars_end(Font *font) { static void text_render_char_internal(Font *font, char32_t c, TextRenderState *state) { if (c >= 0x30000 && c < 0xE0000){ - // these Unicode code points are currently unassigned. replace them with ☐. + // these Unicode code points are currently unassigned. replace them with a Unicode box. // (specifically, we don't want to use extra memory for pages which // won't even have any valid characters in them) c = 0x2610; |