mirror of
https://github.com/pyrollo/display_modpack.git
synced 2024-11-30 18:13:43 +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
|
local pos = 1
|
||||||
|
|
||||||
-- TODO: Use iterator
|
-- TODO: Use iterator
|
||||||
while pos <= #text do
|
while pos <= #line do
|
||||||
char, pos = get_next_char(line, pos)
|
char, pos = get_next_char(line, pos)
|
||||||
|
|
||||||
-- Replace chars with no texture by the NULL(0) char
|
-- Replace chars with no texture by the NULL(0) char
|
||||||
if self.widths[char] == nil
|
if self.widths[char] == nil
|
||||||
or char == 88 --DEBUG
|
|
||||||
then
|
then
|
||||||
print(string.format("["..font_api.name
|
print(string.format("["..font_api.name
|
||||||
.."] Missing char %d (%04x)",char,char))
|
.."] Missing char %d (%04x)",char,char))
|
||||||
|
Loading…
Reference in New Issue
Block a user