fix table index in sequenceToString method

pull/2/merge
Qingping Hou 12 years ago
parent b40a748a78
commit e4160a9909

@ -315,8 +315,8 @@ function Input:sequenceToString(sequence)
end
end
if #modifiers then
keystring[0] = table.concat(modifiers, "-")
keystring[1] = "-"
keystring[1] = table.concat(modifiers, "-")
keystring[2] = "-"
end
return table.concat(keystring)
end

Loading…
Cancel
Save