fix board file path

This commit is contained in:
Reza Behzadan 2020-05-28 22:49:22 +04:30
parent ef89687779
commit 231612cce4
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
return {
board = "/home/reza/p/lua/22.sudoku/boards/veryhard/27.txt",
board = {
filePath = "boards/040.txt",
},
window = {
bgColor = "FFFFFF",
width = nil,

View File

@ -11,7 +11,7 @@ function love.load()
love.mouse.setGrabbed(false)
love.keyboard.setKeyRepeat(true)
math.randomseed(os.time())
local board = loadBoard("/home/reza/p/lua/22.sudoku/boards/veryhard/27.txt")
local board = loadBoard(config.board.filePath)
local width, height = love.graphics.getDimensions()
sudokuCanvas = SudokuCanvas:new(200, 100, height/1.5, config.SudokuCanvas)
sudokuCanvas:setBoard(board)