1
0
Fork 0
forked from len0rd/rockbox

More 64-bit fixes

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9321 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2006-03-28 17:42:57 +00:00
parent ec8dae1524
commit 5293ea1dac
3 changed files with 16 additions and 16 deletions

View file

@ -806,7 +806,7 @@ void D_DoomMainSetup(void)
// for statistics driver
extern void* statcopy;
statcopy = (void*)atoi(myargv[p+1]);
statcopy = (void*)(long)atoi(myargv[p+1]);
printf ("External statistics registered.\n");
}