sample code bugfix

This commit is contained in:
TsT 2014-12-30 01:18:00 +01:00
parent 4eadfee6f4
commit 93eb5385d9

View file

@ -137,7 +137,7 @@ Quickie is an [immediate mode gui][IMGUI] library for [LÖVE][LOVE]. Initial
function love.keypressed(key, code)
gui.keyboard.pressed(key)
-- LÖVE 0.8: see if this code can be converted in a character
if pcall(string.char, code) code > 0 then
if pcall(string.char, code) and code > 0 then
gui.keyboard.textinput(string.char(code))
end
end