diff options
Diffstat (limited to 'apps/plugins/maze.c')
-rw-r--r-- | apps/plugins/maze.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/maze.c b/apps/plugins/maze.c index e407caeb82..2fbdd60480 100644 --- a/apps/plugins/maze.c +++ b/apps/plugins/maze.c @@ -176,8 +176,8 @@ void maze_draw(struct maze* maze, struct screen* display) int point_width, point_height, point_offset_x, point_offset_y; unsigned short cell; - wx = (int) display->width / MAZE_WIDTH; - wy = (int) display->height / MAZE_HEIGHT; + wx = (int) display->getwidth() / MAZE_WIDTH; + wy = (int) display->getheight() / MAZE_HEIGHT; if(wx>3){ point_width=wx-3; |