From 1a7ffa800e5a67137578f977f3d8b85a4b8fef8c Mon Sep 17 00:00:00 2001 From: jdgordon Date: Sun, 13 Jul 2008 07:23:08 +0000 Subject: [PATCH] fix FS#9184 hopefully... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18023 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/maze.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/plugins/maze.c b/apps/plugins/maze.c index 2fbdd6048..7f0c05870 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->getwidth() / MAZE_WIDTH; - wy = (int) display->getheight() / MAZE_HEIGHT; + wx = (int) display->lcdwidth / MAZE_WIDTH; + wy = (int) display->lcdheight / MAZE_HEIGHT; if(wx>3){ point_width=wx-3; @@ -484,6 +484,9 @@ enum plugin_status plugin_start(const struct plugin_api* api, const void* parame /* Turn off backlight timeout */ backlight_force_on(rb); /* backlight control in lib/helper.c */ + FOR_NB_SCREENS(i) + rb->screens[i]->set_viewport(NULL); + #if LCD_DEPTH > 1 rb->lcd_set_backdrop(NULL); #if LCD_DEPTH >= 16 -- 2.11.4.GIT