mirror of
https://github.com/robmcmullen/fujirun.git
synced 2025-01-04 08:30:26 +00:00
Fixed top boxes always seeming taller than the bottom, was starting one row too far down!
This commit is contained in:
parent
831d3c167f
commit
6131d9a070
@ -322,7 +322,7 @@ def setvpath(col):
|
|||||||
def sethpath(col):
|
def sethpath(col):
|
||||||
x1_save = vpath_cols[col - 1]
|
x1_save = vpath_cols[col - 1]
|
||||||
x2 = vpath_cols[col]
|
x2 = vpath_cols[col]
|
||||||
y = mazetoprow + 1 # first blank row below the top row
|
y = mazetoprow
|
||||||
y += get_rand_spacing()
|
y += get_rand_spacing()
|
||||||
while y < mazebotrow - 1:
|
while y < mazebotrow - 1:
|
||||||
addr = mazerow(y)
|
addr = mazerow(y)
|
||||||
|
Loading…
Reference in New Issue
Block a user