testing if commenting out some lines won't make it hang

This commit is contained in:
mint 2021-05-06 19:54:49 -04:00
parent d8d64b35cf
commit 8835535dba
1 changed files with 5 additions and 3 deletions

View File

@ -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()