mirror of
https://github.com/pyrollo/display_modpack.git
synced 2024-11-27 16:43:45 +01:00
Creation of Font class and code update accordingly (fix)
This commit is contained in:
parent
c6cad702bc
commit
b96550ab24
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user