Skip to content

Commit

Permalink
what a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Robertson committed Jan 18, 2023
1 parent 039dbff commit cf2e301
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scenarios/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,12 @@ func DrawCanvas(img *image.Paletted, src image.Image, prev_coords map[string]int
level += 1
prev_coords = map[string]int{"x": 2, "y": 2}
next_coords = map[string]int{"x": 2, "y": 2}
currentMaze = createMaze(int(math.Round(float64(level/14))), int(math.Round(float64(levelHeight/16))))
currentMaze = createMaze(int(math.Round(float64(levelWidth/14))), int(math.Round(float64(levelHeight/16))))
showLevel = true
introFrames = 0
screenX = 0
screenY = 0
}

}

// Position Avatar
Expand Down

0 comments on commit cf2e301

Please sign in to comment.