diff options
author | Tom Ross <midgey@rockbox.org> | 2007-02-17 23:06:22 +0000 |
---|---|---|
committer | Tom Ross <midgey@rockbox.org> | 2007-02-17 23:06:22 +0000 |
commit | 2ad25c88182a1d898b7ba460beba3bd2231be94b (patch) | |
tree | 6b6b5ffa2cbf214fe45a5a323cd1427f1387099f /apps/plugins/blackjack.c | |
parent | f435db010773623bdcd15b8357c94b60aca4e4e9 (diff) |
Kill a few warnings in plugins.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12366 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/blackjack.c')
-rw-r--r-- | apps/plugins/blackjack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c index a4c22797e8..728924da3e 100644 --- a/apps/plugins/blackjack.c +++ b/apps/plugins/blackjack.c @@ -824,7 +824,7 @@ static signed int blackjack_get_amount(char message[20], signed int lower_limit, rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - 4*h - 1, message); rb->snprintf(str, 9, "$%d", amount); rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - 3*h, str); -#if (CONFIG_KEY == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD) +#if (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD) rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - h-2, " >>|: +1"); rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - 1, " |<<: -1"); rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 + h, "SCROLL+: +10"); |