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

@ -2453,7 +2453,7 @@ struct t_disp* get_image(struct jpeg* p_jpg, int ds)
/* the actual decoding */
time = *rb->current_tick;
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(true);
status = jpeg_decode(p_jpg, p_disp->bitmap, ds, cb_progess);
rb->cpu_boost(false);