Don't crash the editor when encountering non-UTF8 text
This commit is contained in:
parent
857e9dc8c5
commit
2783adc10c
5
main.lua
5
main.lua
|
@ -34,8 +34,11 @@ end
|
||||||
function renderer.draw_text(font, text, x, y, color)
|
function renderer.draw_text(font, text, x, y, color)
|
||||||
renderer.set_litecolor(color)
|
renderer.set_litecolor(color)
|
||||||
love.graphics.setFont(font.font)
|
love.graphics.setFont(font.font)
|
||||||
love.graphics.print(text, x, y)
|
if pcall(function() love.graphics.print(text, x, y) end) then
|
||||||
return x + font.font:getWidth(text)
|
return x + font.font:getWidth(text)
|
||||||
|
else
|
||||||
|
return x
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
renderer.font = {}
|
renderer.font = {}
|
||||||
|
|
Loading…
Reference in a new issue