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

@ -71,7 +71,7 @@ void emu_run(void)
vid_begin();
lcd_begin();
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(true);
#endif
while(!shut)
@ -123,7 +123,7 @@ void emu_run(void)
}
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(false);
#endif
}