aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Yves Rollo <dev@pyrollo.com>2018-07-08 20:41:02 +0200
committerPierre-Yves Rollo <dev@pyrollo.com>2018-07-08 20:41:02 +0200
commite233ffb691b690369b73eee3fd11cbd81373b0f6 (patch)
tree1ece580d97d9e282ce1e25328e2666e23a26b724
parent52973fbd84c4ded324d1f0272fe904652eb0515c (diff)
downloaddisplay_modpack_no_craft-e233ffb691b690369b73eee3fd11cbd81373b0f6.tar.gz
display_modpack_no_craft-e233ffb691b690369b73eee3fd11cbd81373b0f6.zip
Creation of Font class and code update accordingly (fix)
-rw-r--r--font.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/font.lua b/font.lua
index 60563d8..6c848f6 100644
--- a/font.lua
+++ b/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))