add limit for height and width

This commit is contained in:
2026-04-03 15:42:20 +02:00
parent 2532a35e30
commit ee4f48a5c0
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -483,7 +483,7 @@ def main() -> None:
"""Run the maze application."""
mlx = None
try:
mlx = MazeMLX(1000, 1000)
mlx = MazeMLX(1600, 2000)
config = Parsing.get_data_maze("config.txt")
amazing = AMazeIng(**config)
mlx.start(amazing)