mirror of
https://github.com/robmcmullen/fujirun.git
synced 2024-12-29 14:33:23 +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):
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user