1
0
Fork 0
forked from len0rd/rockbox

Remove some unrequired SIMULATOR checks - the CPU_* family of defines are never defined for the sim.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14711 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-09-15 16:49:28 +00:00
parent e4f8b95d53
commit 219b1f58a6
3 changed files with 6 additions and 6 deletions

View file

@ -2,8 +2,8 @@ bitstream.c
decoder.c
shndec.c
tables.c
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
#if defined(CPU_COLDFIRE)
coldfire.S
#elif defined(CPU_ARM) && !defined(SIMULATOR)
#elif defined(CPU_ARM)
arm.S
#endif