From 83644f679a42d2de74e90dde057c89b1fc7f1ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Sun, 10 Dec 2023 17:49:39 +0100 Subject: [PATCH] fix typo in API --- engine/joint/v4k.h | 2 +- engine/split/v4k_font.h | 2 +- engine/v4k.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/joint/v4k.h b/engine/joint/v4k.h index 08992d5..4c92be3 100644 --- a/engine/joint/v4k.h +++ b/engine/joint/v4k.h @@ -16118,7 +16118,7 @@ enum FONT_FLAGS { typedef struct font_metrics_t { float ascent; // max distance above baseline for all glyphs float descent; // max distance below baseline for all glyphs - float linegap; // distance betwen ascent of next line and descent of current line + float linegap; // distance between ascent of next line and descent of current line float linedist; // distance between the baseline of two lines (ascent - descent + linegap) } font_metrics_t; diff --git a/engine/split/v4k_font.h b/engine/split/v4k_font.h index 6938480..9762241 100644 --- a/engine/split/v4k_font.h +++ b/engine/split/v4k_font.h @@ -73,7 +73,7 @@ enum FONT_FLAGS { typedef struct font_metrics_t { float ascent; // max distance above baseline for all glyphs float descent; // max distance below baseline for all glyphs - float linegap; // distance betwen ascent of next line and descent of current line + float linegap; // distance between ascent of next line and descent of current line float linedist; // distance between the baseline of two lines (ascent - descent + linegap) } font_metrics_t; diff --git a/engine/v4k.h b/engine/v4k.h index b81c1f1..d0cddb8 100644 --- a/engine/v4k.h +++ b/engine/v4k.h @@ -2185,7 +2185,7 @@ enum FONT_FLAGS { typedef struct font_metrics_t { float ascent; // max distance above baseline for all glyphs float descent; // max distance below baseline for all glyphs - float linegap; // distance betwen ascent of next line and descent of current line + float linegap; // distance between ascent of next line and descent of current line float linedist; // distance between the baseline of two lines (ascent - descent + linegap) } font_metrics_t;