From 63a379c64c1156278742a80ff203eda68e89ba4e Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Tue, 6 Sep 2011 13:53:46 +0000 Subject: Add the new file and fix the compile error git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30462 a1c6a512-1295-4272-9138-f99709370657 --- apps/misc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/misc.c') diff --git a/apps/misc.c b/apps/misc.c index 6e2bf32770..0e24c82e64 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -1079,22 +1079,22 @@ static enum current_activity static int current_activity_top = 0; void push_current_activity(enum current_activity screen) { -#if HAVE_LCD_BITMAP +#ifdef HAVE_LCD_BITMAP int i; #endif current_activity[current_activity_top++] = screen; -#if HAVE_LCD_BITMAP +#ifdef HAVE_LCD_BITMAP FOR_NB_SCREENS(i) skinlist_set_cfg(i, NULL); #endif } void pop_current_activity(void) { -#if HAVE_LCD_BITMAP +#ifdef HAVE_LCD_BITMAP int i; #endif current_activity_top--; -#if HAVE_LCD_BITMAP +#ifdef HAVE_LCD_BITMAP FOR_NB_SCREENS(i) skinlist_set_cfg(i, NULL); #endif -- cgit v1.2.3