diff --git a/rhythmblock.lua b/rhythmblock.lua index 2d9af91..14eaa49 100644 --- a/rhythmblock.lua +++ b/rhythmblock.lua @@ -1,5 +1,7 @@ accentColor = colors.gray buttonColor = colors.lightGray +textColor = color.lightGray +altTextColor = color.gray backgroundColor = colors.black function round(n) @@ -64,9 +66,9 @@ end function renderPlayButton() paintutils.drawFilledBox(centerWidth - 3, centerHeight - 4, centerWidth + 2, centerHeight + 2, accentColor) - paintutils.drawLine(centerWidth - 2, centerHeight - 3, centerWidth - 2, centerHeight + 1, buttonColor) - paintutils.drawLine(centerWidth - 1, centerHeight - 2, centerWidth - 1, centerHeight, buttonColor) - paintutils.drawPixel(centerWidth + 1, centerHeight) + -- paintutils.drawLine(centerWidth - 2, centerHeight - 3, centerWidth - 2, centerHeight + 1, buttonColor) + -- paintutils.drawLine(centerWidth - 1, centerHeight - 2, centerWidth - 1, centerHeight, buttonColor) + -- paintutils.drawPixel(centerWidth + 1, centerHeight) end playDisc()