diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-01-02 09:20:24 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-01-02 09:20:24 +0000 |
| commit | 5bdac4875c8d72f2780c8812d07c6e168112af78 (patch) | |
| tree | 5119e38a048989b0f4a19631c05afd868170c2af /apps/plugins | |
| parent | 7ec0c9d3e71a67364c9509ddf3bcfa7b3ea13f7c (diff) | |
| download | rockbox-5bdac4875c8d72f2780c8812d07c6e168112af78.zip rockbox-5bdac4875c8d72f2780c8812d07c6e168112af78.tar.gz rockbox-5bdac4875c8d72f2780c8812d07c6e168112af78.tar.bz2 rockbox-5bdac4875c8d72f2780c8812d07c6e168112af78.tar.xz | |
Start with the basic button layout if the basic operators are not available separately (Ondio keypad)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5525 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/calculator.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/calculator.c b/apps/plugins/calculator.c index 5e8c31a..04231f4 100644 --- a/apps/plugins/calculator.c +++ b/apps/plugins/calculator.c @@ -366,8 +366,13 @@ void cal_initial (void) rb->lcd_drawline(X_1_POS+i*REC_WIDTH, Y_1_POS, X_1_POS+i*REC_WIDTH, Y_6_POS); - /* draw buttons */ +#ifdef CALCULATOR_OPERATORS + /* basic operators are available through separate button */ buttonGroup = sciButtons; +#else + buttonGroup = basicButtons; +#endif + /* draw buttons */ for (i = 0; i < 5; i++){ for (j = 0; j < 5; j++){ rb->lcd_getstringsize( buttonChar[buttonGroup][i][j],&w,&h); |