summaryrefslogtreecommitdiff
path: root/game/gfx.lua
diff options
context:
space:
mode:
Diffstat (limited to 'game/gfx.lua')
-rw-r--r--game/gfx.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/gfx.lua b/game/gfx.lua
index c74bc64..b0b0db2 100644
--- a/game/gfx.lua
+++ b/game/gfx.lua
@@ -185,7 +185,7 @@ function M:draw_game_text()
love.graphics.setColor(1, 1, 1)
end
local j = 0
- for text in obj.text:gfind("[^\n]+") do
+ for text in obj.text:gmatch("[^\n]+") do
local w = font:getWidth(text)
local x = text_end_x - w
love.graphics.print(text, x, y + font:getHeight() * j)