diff options
author | ubq323 <ubq323@ubq323.website> | 2023-06-18 22:28:37 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-06-18 22:28:37 +0100 |
commit | f55c9f415a081a175e48b51db894f23e59ce47a2 (patch) | |
tree | ee63f98d5c4f1a2a11e9800ced9c2861eb3085a7 /client/main.lua | |
parent | 598bd4332deddd5f4c506689cbd136f495835ea7 (diff) |
fix line lengths
Diffstat (limited to 'client/main.lua')
-rw-r--r-- | client/main.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/main.lua b/client/main.lua index 7388c67..f68ff79 100644 --- a/client/main.lua +++ b/client/main.lua @@ -27,7 +27,8 @@ function titlescene.draw() love.graphics.print("enter username: ",40,120) love.graphics.setColor(0,0,0,0.8) - love.graphics.rectangle('fill', 60,150, 3+normal_font:getWidth(username), 15) + love.graphics.rectangle('fill', 60,150, + 3+normal_font:getWidth(username), 15) love.graphics.setColor(1,1,1) love.graphics.print(username, 60, 150) |