diff --git a/sonic-radiance.love/game/modules/menus/fancy.lua b/sonic-radiance.love/game/modules/menus/fancy.lua index e48ebfa..65d4224 100644 --- a/sonic-radiance.love/game/modules/menus/fancy.lua +++ b/sonic-radiance.love/game/modules/menus/fancy.lua @@ -51,7 +51,7 @@ end function fancy.BaseWidget:drawCanvas() love.graphics.draw(self.box, 0, 0) - local h = math.floor(self.height / 2) - (self.font:getHeight() / 2) - 1 + local h = math.floor(self.height / 2) - (self.font:getHeight() / 2) - 2 self.font:draw(self.label, 16, h, -1, "left") self.font:draw(self.label2, self.width -8, h, -1, "right") end diff --git a/sonic-radiance.love/game/modules/menus/list.lua b/sonic-radiance.love/game/modules/menus/list.lua index e59ec75..c3ad48d 100644 --- a/sonic-radiance.love/game/modules/menus/list.lua +++ b/sonic-radiance.love/game/modules/menus/list.lua @@ -81,7 +81,7 @@ end function list.ListMenu:getCursorPosition() local addition = MENU_ITEM_HEIGHT local x = self.x + 6 - local y = self.y + ((self.cursorTransition) * addition) - 1 + local y = self.y + ((self.cursorTransition) * addition) + 1 return x, y end @@ -122,7 +122,7 @@ function list.CenteredWidget:new(scene, menu_name, label) end function list.CenteredWidget:drawCanvas() - local h = math.floor(self.height / 2) - (self.font:getHeight() / 2) - 1 + local h = math.floor(self.height / 2) - (self.font:getHeight() / 2) - 2 self.font:draw(self.label, self.width / 2, h, -1, "center") end