1
0
Fork 0
forked from len0rd/rockbox

use #ifdef x instead of #if defined(x)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9581 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Christian Gmeiner 2006-04-09 15:00:30 +00:00
parent eb7d4f88ea
commit a91b794cb2
6 changed files with 11 additions and 11 deletions

View file

@ -190,7 +190,7 @@ int main(void)
rb->lcd_puts(0, 0, pbuf);
rb->lcd_update();
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(true);
#endif
gray_show(true); /* switch on greyscale overlay */
@ -252,7 +252,7 @@ int main(void)
time / 100, time % 100);
rb->lcd_puts(0, 0, pbuf);
gray_deferred_lcd_update(); /* schedule an lcd_update() */
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(false);
#endif