From a8158f97177be80ebfcf70df49fe6ba281450d07 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 28 Jul 2024 19:11:56 -0700 Subject: [PATCH] stop returning unused value --- edit.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/edit.lua b/edit.lua index 1d7f758..118e0ea 100644 --- a/edit.lua +++ b/edit.lua @@ -152,7 +152,6 @@ function edit.put_cursor_on_next_text_line(State) end end --- return y drawn until function edit.draw(State) State.button_handlers = {} love.graphics.setFont(State.font) @@ -202,7 +201,6 @@ function edit.draw(State) if State.search_term then Text.draw_search_bar(State) end - return y end function edit.update(State, dt)