summaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-11-25 09:17:00 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-11-25 09:17:00 -0500
commit4e51199f1103d2d9daa563b63d0e8f22c36fbe8a (patch)
tree707b7cf557f1b9937a58c66f593847bd957e07b3 /text.c
parente3aa668ef358739148adb1a4965b629d07467575 (diff)
got windows build to work
Diffstat (limited to 'text.c')
-rw-r--r--text.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/text.c b/text.c
index 5bc0bac..258af36 100644
--- a/text.c
+++ b/text.c
@@ -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;