Fixed top boxes always seeming taller than the bottom, was starting one row too far down!

This commit is contained in:
Rob McMullen 2017-04-26 13:42:31 -07:00
parent 831d3c167f
commit 6131d9a070

View File

@ -322,7 +322,7 @@ def setvpath(col):
def sethpath(col):
x1_save = vpath_cols[col - 1]
x2 = vpath_cols[col]
y = mazetoprow + 1 # first blank row below the top row
y = mazetoprow
y += get_rand_spacing()
while y < mazebotrow - 1:
addr = mazerow(y)