diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2008-06-28 20:45:21 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2008-06-28 20:45:21 +0000 |
| commit | 205f3df7816a1eea9c812ea285d74a4f8ecfad2a (patch) | |
| tree | 356be7b807a4407b7e243ec57da4d5068fe09ab1 /apps/plugins/demystify.c | |
| parent | 3d240f1e2a34e616c2aba22b58ea78de7f277127 (diff) | |
| download | rockbox-205f3df7816a1eea9c812ea285d74a4f8ecfad2a.zip rockbox-205f3df7816a1eea9c812ea285d74a4f8ecfad2a.tar.gz rockbox-205f3df7816a1eea9c812ea285d74a4f8ecfad2a.tar.bz2 rockbox-205f3df7816a1eea9c812ea285d74a4f8ecfad2a.tar.xz | |
Remove a viewport ambiguity by changing the screens width/heigth members into lcdwidth/lcdheight. Normal usercode should always use getwidth()/getheigth() as that returns the viewport width/height. Fixes issues that would have appeared in many places when introducing viewports with sizes != lcd sizes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17857 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/demystify.c')
| -rw-r--r-- | apps/plugins/demystify.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/demystify.c b/apps/plugins/demystify.c index bc659eb..96cb5a4 100644 --- a/apps/plugins/demystify.c +++ b/apps/plugins/demystify.c @@ -108,8 +108,8 @@ void polygon_init(struct polygon * polygon, struct screen * display) int i; for(i=0;i<NB_POINTS;++i) { - polygon->points[i].x=(rb->rand() % (display->width)); - polygon->points[i].y=(rb->rand() % (display->height)); + polygon->points[i].x=(rb->rand() % (display->getwidth())); + polygon->points[i].y=(rb->rand() % (display->getheight())); } } @@ -167,9 +167,9 @@ void polygon_update(struct polygon *polygon, struct screen * display, struct pol x=1; polygon_move->move_steps[i].x=get_new_step(step); } - else if(x>=display->width) + else if(x>=display->getwidth()) { - x=display->width-1; + x=display->getwidth()-1; polygon_move->move_steps[i].x=get_new_step(step); } polygon->points[i].x=x; @@ -182,9 +182,9 @@ void polygon_update(struct polygon *polygon, struct screen * display, struct pol y=1; polygon_move->move_steps[i].y=get_new_step(step); } - else if(y>=display->height) + else if(y>=display->getheight()) { - y=display->height-1; + y=display->getheight()-1; polygon_move->move_steps[i].y=get_new_step(step); } polygon->points[i].y=y; |