update some comments

This commit is contained in:
Kartik K. Agaram 2023-10-18 17:28:58 -07:00
parent 3abfcb3088
commit 6ea1a03133
2 changed files with 2 additions and 3 deletions

View File

@ -1 +1 @@
Rows = {} -- ordered list of names for both rows and columns
Rows = {} -- order in which to show teams in both rows and columns

View File

@ -1,7 +1,6 @@
make_button_pop = function(params)
-- leave 1px on all sides for that border with linewidth 3
-- shadows/highlights 2px
local p = 4
local p = 4 -- shadows/highlights
-- button surface
App.color{r=0.8, g=0.8, b=0}
love.graphics.rectangle('fill', params.x+p+1, params.y+p+1, params.w-(p+1)*2, params.h-(p+1)*2)