summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-02-11 21:56:02 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-02-11 21:56:02 +0100
commit20c10be82f9a38a1def467408c1173d38ff993a8 (patch)
treeb6e7fceabbef20f69ef64f95f17a67808c5c9669 /src
parent555cfbe1ceeb879ecefcf8666225d3c28a19e6df (diff)
forgot assert
Diffstat (limited to 'src')
-rw-r--r--src/text.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/text.cc b/src/text.cc
index fc67626..0a48d6c 100644
--- a/src/text.cc
+++ b/src/text.cc
@@ -81,6 +81,7 @@ enum font_error_e wayc_font_init(struct font_s* font,
enum font_error_e wayc_font_lookup(struct font_s* font, struct atlas_s* atlas,
codepoint_t codepoint, struct glyph_s* out) {
wayc_notnull(font);
+ wayc_notnull(atlas);
wayc_notnull(out);
FT_Face face = font->face;