Blitzmax gives me the above error on this line:
Sudoku[SudokusLoaded, X, Y] = Mid$(ThisLine$, N+1, 1)
It allows this however:
Sudoku[SudokusLoaded, X, Y] = Int(Mid$(ThisLine$, N+1, 1))
Why is it giving me this error? The docs clearly say that converting from a string to an int can be done automatically without explicit type casting.
Sudoku[SudokusLoaded, X, Y] = Mid$(ThisLine$, N+1, 1)
It allows this however:
Sudoku[SudokusLoaded, X, Y] = Int(Mid$(ThisLine$, N+1, 1))
Why is it giving me this error? The docs clearly say that converting from a string to an int can be done automatically without explicit type casting.