aboutsummaryrefslogtreecommitdiff
path: root/font_api
diff options
context:
space:
mode:
Diffstat (limited to 'font_api')
-rw-r--r--font_api/font.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/font_api/font.lua b/font_api/font.lua
index 60563d8..6c848f6 100644
--- a/font_api/font.lua
+++ b/font_api/font.lua
@@ -187,12 +187,11 @@ function font_api.Font:make_line_texture(line, texturew, x, y)
local pos = 1
-- TODO: Use iterator
- while pos <= #text do
+ while pos <= #line do
char, pos = get_next_char(line, pos)
-- Replace chars with no texture by the NULL(0) char
if self.widths[char] == nil
-or char == 88 --DEBUG
then
print(string.format("["..font_api.name
.."] Missing char %d (%04x)",char,char))