From f4338f49cc2fbacf48a10a9562311fda0add234e Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Fri, 28 Jul 2023 10:21:55 -0400 Subject: [PATCH] One more button drawing update. --- simple-graphics.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simple-graphics.lua b/simple-graphics.lua index baf1650..7f99aa8 100644 --- a/simple-graphics.lua +++ b/simple-graphics.lua @@ -80,8 +80,8 @@ function lib.drawButton(m, x, y, w, h, text, fg, bg) local y1 = y local x2 = x+w-1 local y2 = y+h-1 - local midX = x+math.floor((w-1)/2) - local midY = y+math.floor((h-1)/2) + local midX = x+math.floor(w/2)-1 + local midY = y+math.floor(h/2)-1 lib.fillRect(m, x, y, w, h, bg) lib.drawTextCenter(m, midX, midY, text, fg) return {x1=x1,y1=y1,x2=x2,y2=y2}