summaryrefslogtreecommitdiffstats
path: root/libass/ass_render.h
diff options
context:
space:
mode:
Diffstat (limited to 'libass/ass_render.h')
-rw-r--r--libass/ass_render.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libass/ass_render.h b/libass/ass_render.h
index 7bdf1e3..3cb0e1c 100644
--- a/libass/ass_render.h
+++ b/libass/ass_render.h
@@ -21,6 +21,7 @@
#define LIBASS_RENDER_H
#include <inttypes.h>
+#include <stdbool.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_GLYPH_H
@@ -122,7 +123,7 @@ typedef struct {
// GlyphInfo and TextInfo are used for text centering and word-wrapping operations
typedef struct glyph_info {
unsigned symbol;
- unsigned skip; // skip glyph when layouting text
+ bool skip; // skip glyph when layouting text
ASS_Font *font;
int face_index;
int glyph_index;