From 8835535dbaab5a521d8b036a3007687024a1739d Mon Sep 17 00:00:00 2001 From: mint Date: Thu, 6 May 2021 19:54:49 -0400 Subject: [PATCH] testing if commenting out some lines won't make it hang --- rhythmblock.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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()