diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-02-09 00:36:55 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-02-09 00:36:55 +0000 |
| commit | 5c7461b22ccf626c6a7a188605c4b230e9c5d121 (patch) | |
| tree | 0c632759cab133c20ecc3cbba2dd3e639e60213a /apps/plugins/cube.c | |
| parent | 485a9cfbc9d924286f8b7566e7bd78f4b8f95c99 (diff) | |
| download | rockbox-5c7461b22ccf626c6a7a188605c4b230e9c5d121.zip rockbox-5c7461b22ccf626c6a7a188605c4b230e9c5d121.tar.gz rockbox-5c7461b22ccf626c6a7a188605c4b230e9c5d121.tar.bz2 rockbox-5c7461b22ccf626c6a7a188605c4b230e9c5d121.tar.xz | |
Correct position of parameter display.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5861 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/cube.c')
| -rw-r--r-- | apps/plugins/cube.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/cube.c b/apps/plugins/cube.c index 0beee59..905d8a5 100644 --- a/apps/plugins/cube.c +++ b/apps/plugins/cube.c @@ -305,10 +305,10 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { t_disp--; rb->snprintf(buffer, 30, "x:%d y:%d z:%d h:%d",xs,ys,zs,highspeed); - rb->lcd_putsxy(0, 56, buffer); + rb->lcd_putsxy(0, LCD_HEIGHT-8, buffer); } rb->lcd_update(); - + xa+=xs; if (xa>359) xa-=360; |