Put not used functions under if 0 for now.

This commit is contained in:
riccardom 2008-12-28 15:03:59 +00:00
parent 24a5daf63d
commit eb6f949ff7
1 changed files with 2 additions and 0 deletions

View File

@ -315,6 +315,7 @@ enum
ROM_DSGBA
};
#if 0 /* not used */
//http://www.aggregate.org/MAGIC/#Population%20Count%20(Ones%20Count)
static u32 ones32(u32 x)
{
@ -329,6 +330,7 @@ static u32 ones32(u32 x)
x += (x >> 16);
return(x & 0x0000003f);
}
#endif
int NDS_LoadROM( const char *filename, int bmtype, u32 bmsize,
const char *cflash_disk_image_file)